Jeff Ward

Results 62 comments of Jeff Ward

It looks like this method adds a configuration for **ALL** entities, **ONLY** on the `Id` property. For example, I have a class like ```csharp public class SomeClass { public Guid...

Perhaps offer an ability to use 'free' developer API key's of [Edamam Food Database API](https://developer.edamam.com/food-database-api-docs) To enable the feature (or perhaps, as a requirement) - each user will need to...

> : I'd like to point out that client side Guid generation is basically what Efcore does by default anyway. I like to use `UUID Version 7`, or other forms...

Honestly this is the best Torrent Client out there for the active user. Yes, some things on it are rather Opiniated "this is the way we do things" but at...

Perhaps this would be better in a new nuget extension package called: `CSharpFunctionalExtensions.Extensions.IQueryable` ? The thing is: * Yes `IEnumerable` and `IQueryable` are practically the same * `CSharpFunctionalExtensions` works on...

The comments on this SO post have some good information about the benefits of `IQueryable` in this insteance: https://stackoverflow.com/a/53417955/5022269 Comment Question: > Ok, I think my question is bad formed....

> Ah, indeed. I forgot it'd require a new dependency. We definitely don't want the library to depend on EF Core. Perhaps we can group this into the set of...

It seems that the `int` is already possible. Here is my implementation: ```csharp // As regular class, see sealed implementation below public class VoteDirection : EnumValueObject { public static readonly...

> Graybyte values are saved. The thumbnails of the found duplicates are not saved between multiple scans. This is by design as these thumbnails can take a lot of space....

Thank you @Maltragor for explaining that, that makes a lot of sense how it is “averaged out” to an even ratio like in the example you gave. If I made...