Structuring and grouping dotnet minimal API endpoints
Since dotnet 6 you can create minimal APIs. In this blog post, I will show you how to structure and group your minimal API endpoints.
Since dotnet 6 you can create minimal APIs. In this blog post, I will show you how to structure and group your minimal API endpoints.
Currently, I am working on a project where we use Entity Framework Core with PostgreSQL. The project is a modular monolith application, where we use multiple schemas to separate the data of different modules. We also use the "Code first" approach to create the database schemas from the C# classes.
What to do when PgBouncer throws an error about an unsupported startup parameter in Entity Framework Core?