David De Smet

Results 28 comments of David De Smet

The issue is DI is unable to resolve service for type `ISieveCustomSortMethods` and `ISieveCustomFilterMethods` while attempting to activate `ApplicationSieveProcessor`. The latter should be (as per your gist): ```csharp public class...

@Lukash88 You just need to register your Sieve processor as you normally do: ```csharp services.AddScoped(); ``` Then inject in your ctor handler, for example, this is my handler: ```csharp public...

@Lukash88 `PagedResponse` is a custom-made class I use for paginated responses which is returned by the handler to the controller and then to the front-end: ```csharp /// /// A Paged...

@Lukash88 It was all really for maintainability and code reuse. In the end, it depends on how you want to architect your solution.

@Lukash88 Is this repository where are you working on? https://github.com/Lukash88/FlowerShop If so, you can create a branch over there and I can have a look.

Is the nuget.config really needed? By default, it resolves to nuget.org

> At least in my default Visual Studio setup the packages failed to load because the repository could not be resolved. That's caused because of the conditionals you added to...

Does your iMac have a Fusion Drive? There have been reports about degraded performance with those. I'm also tempted to make the jump, in my case I've a iMac 27"...

Thanks a lot, I will hold on until the mentioned update. I’m not in a rush.

Hello Mark, I haven’t looked into any new .NET Core 3.0 features yet but I find very interesting the hardware intrinsics one, it is the first time I heard about...