InstantAPIs icon indicating copy to clipboard operation
InstantAPIs copied to clipboard

A library that generates Minimal API endpoints for an Entity Framework context.

Results 22 InstantAPIs issues
Sort by recently updated
recently updated
newest added

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

enhancement
help wanted

Need to configure individual APIs with documentation for OpenAPI

enhancement
help wanted

Tagging @softchris for visibility

enhancement

We should enable optional GraphQL support with an entry in the InstantAPI configuration

enhancement

We should enable optional gRPC bindings with an entry in the InstantAPI configuration

enhancement

Validation and model binding for the POST and PUT operations are needed

enhancement

Define an IRepository interface and support mapping a concrete instance of that to APIs This will help support other data providers

enhancement

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.** ![Snipaste_2023-08-05_23-57-18](https://github.com/csharpfritz/InstantAPIs/assets/1240729/f6e5242e-95fe-4842-9084-cd7598c61f57) Here is part of my Program.cs ``` builder.Services.AddSqlServer(builder.Configuration.GetConnectionString("DefaultConnectionLocal"));...