InstantAPIs
InstantAPIs copied to clipboard
A library that generates Minimal API endpoints for an Entity Framework context.
Introduce configuration to allow mapping from the datasource to a ViewModel, and mapping from the ViewModel to the datasource Using [Automapper](https://automapper.org/) may be the preferred technique here
Need to configure individual APIs with documentation for OpenAPI
We should enable optional GraphQL support with an entry in the InstantAPI configuration
We should enable optional gRPC bindings with an entry in the InstantAPI configuration
Define an IRepository interface and support mapping a concrete instance of that to APIs This will help support other data providers
Previously the code was check for property called id and assume thats the primary key, or find the data annotation [Key]. If the user does not have any of those...
Anyone can help find out why im getting this error? **KeyNotFoundException: The given key 'dbContext.DataModel.Models.AspNetUserLogin' was not present in the dictionary.**  Here is part of my Program.cs ``` builder.Services.AddSqlServer(builder.Configuration.GetConnectionString("DefaultConnectionLocal"));...