You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JJMasterData is an open-source .NET library to help you create dynamic CRUDs quickly from data dictionaries (database metadata), along with other boilerplate-intensive things like exporting and importing data.
using JJMasterData.Web.Configuration;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddJJMasterDataWeb();
///...
var app = builder.Build();
///...
//Required middlewares
app.UseStaticFiles();
app.UseSession(); //Session is very important
app.MapDataDictionary();
app.MapMasterData();
await app.UseMasterDataSeedingAsync();
app.Run();
Create a wwwroot folder if your project is empty
Run the project and visit /DataDictionary/Element/Index
You can get the appsettings.json schema URL from here
Have a bug or a feature request?
Please first search for existing and closed issues.
If your problem or idea is not addressed yet, please open a new issue.
About
.NET CRUD generator library with Bootstrap support to create dynamic forms at runtime from a data dictionary.