KorzhCom/EasyData: An open-source framework for quick and easy implementation of CRUD operations (both API and UI) in ASP.NET Core applications.

EasyData library lets you quickly build a UI for CRUD (Create, Read, Update, Delete) operations in any ASP.NET Core application that uses Entity Framework Core.

Basically, EasyData does the following two things:

First, it “reads” your DbContext object in order to obtain the necessary metadata.

Then, based on that metadata, it provides an API endpoint for all CRUD operations and renders the UI (pages and dialogs) that communicate with the API endpoint for data-management ta…