InstantAPIs
InstantAPIs copied to clipboard
A library that generates Minimal API endpoints for an Entity Framework context.
- added an interface with factory - included ef core provider - included json provider - did some code reorganisation/move/rename This is a POC/idea to implement the #4 issue. I...
It would be nice if this whole process could be like a pluggable pipeline (kind of like middleware) where I can just slot in additional functionality. So initial example would...
This version can separate the apis by group? As when we use the .WithTags() parameter in out minimal apis, then Swagger group the routes above a title inside the .WithTags()....
- [x] Project Name renamed - [x] Namespace renamed - [ ] NuGet package renamed
I have a .NET 6 project, but I'm using `Program.cs` and 'Startup.cs' approach. There is a method to add InstantAPI using `services.AddInstantAPIs();`, but no way to configure it inside `Configure(IApplicationBuilder...
IModel
It might be nice if the user was allowed to inherit their model from an `IModel` interface that looked something like this: ```csharp interface IModel { int/Guid Id { get;...
Using EntityFrameworkCore we can map an entity to multiple tables or multiple entities to a single table (TPT, TPH etc) This made me wonder about the usage of nouns like...
Introduce `Action` parameters on configuration that optionally allow injection of methods to be triggered before the data interaction and after the data interaction - [ ] OnBefore delegate property added...
We should enable Authorization with optional entries in the InstantAPI configuration __from @bravecobra's post on #49_ [ ] allow authorization for the generated APIs and be able to specify authenticated...