nhwilly
nhwilly
First off, great package. I so wish C# had this built in. Thanks for contributing this. I used DU's in Dart when I worked on a Flutter project. I got...
Using external stylesheets to works great with PreMailer! I'm just leaving this here in case it helps anyone else. It's not specifically related to PreMailer, but it caught me for...
I am using `equatable` as you describe in your course. How do you manage when one class contains another and the contained class gets updated? All the examples I find...
What a great addition. This is what allowed me to use `System.Text.Json` in my projects. Thank you. I did notice that I have to use normal casing (not Camel Case)...
If anyone is interested, I can write up a whole thing, but I narrowed it down. In EF Core for Cosmos, OwnsMany properties are automatically embedded in the document (item)...
Extension methods exist that allow for a derived version of a FastEndpoints endpoint to be used to simply return a `Result`. It also extends the invalid request behavior by transforming...
Improve error/validation reporting by allowing for a strongly typed property, e.g. Result.Error<T>
When calling downstream API's there are times when the consuming program needs the details of an error so that domain specific actions can be taken. Example: `MyBlazorApp` calls `MyBlazorAppApi` to...
I've started using `Result` in a lot more places than I originally thought, and I've found some cases where I believe a few more options would be helpful. As an...
The collision of `FastEndpoints` (FE), `FluentValidation` (FV), `Asp.Net Core` (MVC) and `Ardalis.Result` (AR) in the same application begs for a standardized error response. ### The Validation Issue ### 1. FE...
Just fiddling around, I launch my app with Ctrl+F5 in VS2022. Then launched a browser for that instance. With the browser still open, I killed the instance and the "rejoin"...