JJMasterData.Core
4.0.0
Prefix Reserved
See the version list below for details.
dotnet add package JJMasterData.Core --version 4.0.0
NuGet\Install-Package JJMasterData.Core -Version 4.0.0
<PackageReference Include="JJMasterData.Core" Version="4.0.0" />
<PackageVersion Include="JJMasterData.Core" Version="4.0.0" />
<PackageReference Include="JJMasterData.Core" />
paket add JJMasterData.Core --version 4.0.0
#r "nuget: JJMasterData.Core, 4.0.0"
#addin nuget:?package=JJMasterData.Core&version=4.0.0
#tool nuget:?package=JJMasterData.Core&version=4.0.0
<h1 align="center"> <br> <img width=25% src="doc/Documentation/media/JJMasterDataLogoVertical.png"/> </h1> <p align="center"> <a href="https://img.shields.io/badge/.NET-5C2D91"> <img src="https://img.shields.io/badge/.NET-512BD4?logo=dotnet" alt=".NET 6"> </a> <a href="https://img.shields.io/badge/TypeScript-007ACC"> <img src="https://img.shields.io/badge/TypeScript-007ACC?logo=typescript&logoColor=white" alt="TS"> </a> <a href="https://img.shields.io/badge/Microsoft_SQL_Server-CC2927"> <img src="https://img.shields.io/badge/SQL_Server-CC2927?logo=microsoft-sql-server&logoColor=white" alt="TS"> </a> <a href="https://www.nuget.org/profiles/jjconsulting"> <img src="https://img.shields.io/nuget/v/JJMasterData.Web.svg?color=004880" alt="NuGet"> </a> <a href="https://discord.gg/s9F2ntBXnn"> <img src="https://img.shields.io/discord/984473468114456667?color=5b62ef&label=discord" alt="Discord"> </a> </p>
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.
Useful Links
<br>
Features
- Components generated at runtime 🔥
- Data exportation & importation ↔️
- Database script generation ✍️
- Plugins support by interfaces 🪄
- Multiple forms using relationships⛓️
<br>
Getting Started
https://github.com/JJConsulting/JJMasterData/assets/28662273/9b874c9d-2a2f-4d3b-9e78-846db446def2
- Create an ASP.NET Core project (it can be Blazor, MVC, Razor Pages, whetever you like...)
- Install
JJMasterData.Web
dotnet add package JJMasterData.Web
- Configure your
IConfiguration
source with a connection string atJJMasterData:ConnectionString
and a secret key atJJMasterData:SecretKey
{
"JJMasterData": {
"DataDictionaryTableName": "MasterData",
"ConnectionString": "Server=localhost;Database=JJMasterData;Integrated Security=True;Trust Server Certificate=true",
"ReadProcedurePattern": "{tablename}Get",
"WriteProcedurePattern": "{tablename}Set",
"SecretKey": "ExampleSecretKey"
}
}
- At
Program.cs
add the following lines:
using JJMasterData.Web.Configuration;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddJJMasterDataWeb();
///...
var app = builder.Build();
///...
app.UseJJMasterDataWeb();
app.MapJJMasterData();
app.Run();
- Create a
wwwroot
folder if your project is empty - Run the project and visit
/en-US/DataDictionary/Element/Index
<br> <img width="960" alt="image" src="https://github.com/JJConsulting/JJMasterData/assets/52143624/d6208ef1-3206-4504-b0e8-4cdd1a874fe9">
You can get the appsettings.json schema URL from here
See all steps in documentation.
<br>
Building from source 🧰
Install .NET 8
Install NodeJS
Clone this git repository
Open
JJMasterData.sln
file at your IDESet the
WebEntryPoint
as startup projectAt
src/Web
run at your terminal
npm i
- Run the project
Special Thanks
Code contributors
<a href="https://github.com/jjconsulting/JJMasterData/graphs/contributors">
<img src="https://contrib.rocks/image?repo=jjconsulting/jjmasterdata" />
</a>
<br>
Bugs and feature requests 🐛
Have a bug or a feature request? Please first search for existing and closed issues.</br> If your problem or idea is not addressed yet, please open a new issue.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 is compatible. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.8
- JJMasterData.Commons (>= 4.0.0)
- Microsoft.AspNet.Mvc (>= 5.2.7)
- System.IO.Compression (>= 4.3.0)
-
.NETStandard 2.0
- JJMasterData.Commons (>= 4.0.0)
- System.IO.Compression (>= 4.3.0)
-
net6.0
- JJMasterData.Commons (>= 4.0.0)
- System.IO.Compression (>= 4.3.0)
NuGet packages (9)
Showing the top 5 NuGet packages that depend on JJMasterData.Core:
Package | Downloads |
---|---|
JJMasterData.Web
JJMasterData is a codeless CRUD Generator from database metadata. This package contains the Data Dictionary Razor Class Library with all necessary packages. |
|
JJMasterData.WebApi
Package Description |
|
JJMasterData.Pdf
JJMasterData Pdf generation support. |
|
JJMasterData.Hangfire
JJMasterData Hangfire support to background tasks, like exportation and importation. |
|
JJMasterData.NCalc
JJMasterData NCalc expressions support. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.3.43 | 147 | 4 days ago |
4.3.42 | 130 | 5 days ago |
4.3.41 | 202 | 6 days ago |
4.3.40 | 166 | 11 days ago |
4.3.39 | 477 | 19 days ago |
4.3.38 | 86 | 23 days ago |
4.3.37 | 89 | 23 days ago |
4.3.36 | 161 | a month ago |
4.3.35 | 106 | a month ago |
4.3.34 | 157 | a month ago |
4.3.33 | 145 | 2 months ago |
4.3.32 | 121 | 2 months ago |
4.3.31 | 127 | 2 months ago |
4.3.30 | 141 | 2 months ago |
4.3.29 | 119 | 2 months ago |
4.3.28 | 156 | 2 months ago |
4.3.27 | 137 | 2 months ago |
4.3.26 | 118 | 3 months ago |
4.3.25 | 122 | 3 months ago |
4.3.24 | 179 | 3 months ago |
4.3.23 | 111 | 3 months ago |
4.3.22 | 136 | 3 months ago |
4.3.21 | 111 | 3 months ago |
4.3.19 | 133 | 5 months ago |
4.3.18 | 130 | 5 months ago |
4.3.17 | 120 | 5 months ago |
4.3.16 | 142 | 5 months ago |
4.3.15 | 119 | 5 months ago |
4.3.14 | 159 | 6 months ago |
4.3.13 | 139 | 6 months ago |
4.3.12 | 149 | 6 months ago |
4.3.11 | 138 | 6 months ago |
4.3.10 | 374 | 7 months ago |
4.3.9 | 160 | 7 months ago |
4.3.8 | 177 | 7 months ago |
4.3.7 | 164 | 7 months ago |
4.3.6 | 163 | 7 months ago |
4.3.5 | 160 | 7 months ago |
4.3.4 | 174 | 7 months ago |
4.3.3 | 153 | 8 months ago |
4.3.2 | 140 | 8 months ago |
4.3.1 | 153 | 8 months ago |
4.3.0 | 255 | 8 months ago |
4.3.0-rc | 183 | 8 months ago |
4.2.6 | 346 | 10 months ago |
4.2.5 | 176 | 10 months ago |
4.2.4 | 166 | 6/7/2024 |
4.2.3 | 180 | 6/5/2024 |
4.2.2 | 168 | 5/28/2024 |
4.2.1 | 181 | 5/27/2024 |
4.2.0 | 273 | 5/27/2024 |
4.2.0-preview1 | 150 | 5/14/2024 |
4.1.11 | 502 | 4/5/2024 |
4.1.10 | 161 | 4/5/2024 |
4.1.9 | 175 | 4/4/2024 |
4.1.8 | 152 | 4/3/2024 |
4.1.7 | 156 | 4/3/2024 |
4.1.6 | 156 | 4/2/2024 |
4.1.4 | 177 | 4/2/2024 |
4.1.3 | 174 | 4/2/2024 |
4.1.2 | 308 | 3/27/2024 |
4.1.1 | 185 | 3/25/2024 |
4.1.0 | 210 | 3/25/2024 |
4.0.34 | 311 | 3/1/2024 |
4.0.33 | 172 | 3/1/2024 |
4.0.32 | 191 | 3/1/2024 |
4.0.30 | 183 | 3/1/2024 |
4.0.29 | 184 | 2/29/2024 |
4.0.28 | 172 | 2/29/2024 |
4.0.27 | 176 | 2/27/2024 |
4.0.26 | 179 | 2/26/2024 |
4.0.25 | 183 | 2/23/2024 |
4.0.24 | 171 | 2/23/2024 |
4.0.23 | 214 | 2/21/2024 |
4.0.22 | 191 | 2/19/2024 |
4.0.21 | 181 | 2/19/2024 |
4.0.20 | 186 | 2/19/2024 |
4.0.19 | 181 | 2/16/2024 |
4.0.18 | 196 | 2/15/2024 |
4.0.17 | 187 | 2/15/2024 |
4.0.16 | 182 | 2/15/2024 |
4.0.15 | 210 | 2/15/2024 |
4.0.14 | 180 | 2/8/2024 |
4.0.13 | 278 | 2/8/2024 |
4.0.12 | 176 | 2/2/2024 |
4.0.11 | 168 | 2/2/2024 |
4.0.10 | 169 | 2/1/2024 |
4.0.9 | 165 | 1/31/2024 |
4.0.8 | 166 | 1/30/2024 |
4.0.7 | 163 | 1/24/2024 |
4.0.6 | 160 | 1/19/2024 |
4.0.5 | 217 | 1/18/2024 |
4.0.4 | 203 | 1/17/2024 |
4.0.3 | 285 | 1/12/2024 |
4.0.2 | 184 | 1/10/2024 |
4.0.1 | 200 | 1/10/2024 |
4.0.0 | 172 | 1/9/2024 |