A very concise list of each possibilities of minimal API from David Fowler : Minimal APIs at a glance. This is a must that everyone starting to use the minimum API should check out!
Some of this tips can not be easily find in documentation or be split into multiples (too) large pages. This list is just as I like, free of noise.
Month: October 2022
Converting old .Net project files to Sdk style format
A tools can be used as a good starting point: project2015To2017.Cli:
Executing any delegate method with arguments filled from dependency injection
This post is particularly interesting because it details how to execute any delegate method (async or not) with its arguments filled from dependency injection: .NET One-line Scoped Initializers with Dependency Injection | Khalid Abuhakmeh. It use Delegate type as ancestor of any delegate.