JJMasterData.Core
4.0.1
Prefix Reserved
See the version list below for details.
dotnet add package JJMasterData.Core --version 4.0.1
NuGet\Install-Package JJMasterData.Core -Version 4.0.1
<PackageReference Include="JJMasterData.Core" Version="4.0.1" />
paket add JJMasterData.Core --version 4.0.1
#r "nuget: JJMasterData.Core, 4.0.1"
// Install JJMasterData.Core as a Cake Addin #addin nuget:?package=JJMasterData.Core&version=4.0.1 // Install JJMasterData.Core as a Cake Tool #tool nuget:?package=JJMasterData.Core&version=4.0.1
<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/c4bf083d-38e1-486d-aaf2-2177d7ad77ef">
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. |
.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.1)
- Microsoft.AspNet.Mvc (>= 5.2.7)
- System.IO.Compression (>= 4.3.0)
-
.NETStandard 2.0
- JJMasterData.Commons (>= 4.0.1)
- System.IO.Compression (>= 4.3.0)
-
net6.0
- JJMasterData.Commons (>= 4.0.1)
- System.IO.Compression (>= 4.3.0)
NuGet packages (8)
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.15 | 0 | 11/5/2024 |
4.3.14 | 102 | 10/24/2024 |
4.3.13 | 105 | 10/23/2024 |
4.3.12 | 116 | 10/16/2024 |
4.3.11 | 106 | 10/15/2024 |
4.3.10 | 347 | 9/12/2024 |
4.3.9 | 137 | 9/11/2024 |
4.3.8 | 148 | 9/11/2024 |
4.3.7 | 135 | 9/10/2024 |
4.3.6 | 140 | 9/3/2024 |
4.3.5 | 135 | 9/2/2024 |
4.3.4 | 146 | 8/30/2024 |
4.3.3 | 128 | 8/29/2024 |
4.3.2 | 116 | 8/28/2024 |
4.3.1 | 130 | 8/28/2024 |
4.3.0 | 209 | 8/28/2024 |
4.3.0-rc | 167 | 8/14/2024 |
4.2.6 | 318 | 6/24/2024 |
4.2.5 | 150 | 6/17/2024 |
4.2.4 | 140 | 6/7/2024 |
4.2.3 | 155 | 6/5/2024 |
4.2.2 | 145 | 5/28/2024 |
4.2.1 | 155 | 5/27/2024 |
4.2.0 | 246 | 5/27/2024 |
4.2.0-preview1 | 134 | 5/14/2024 |
4.1.11 | 481 | 4/5/2024 |
4.1.10 | 141 | 4/5/2024 |
4.1.9 | 153 | 4/4/2024 |
4.1.8 | 131 | 4/3/2024 |
4.1.7 | 132 | 4/3/2024 |
4.1.6 | 136 | 4/2/2024 |
4.1.4 | 153 | 4/2/2024 |
4.1.3 | 155 | 4/2/2024 |
4.1.2 | 284 | 3/27/2024 |
4.1.1 | 164 | 3/25/2024 |
4.1.0 | 189 | 3/25/2024 |
4.0.34 | 286 | 3/1/2024 |
4.0.33 | 150 | 3/1/2024 |
4.0.32 | 168 | 3/1/2024 |
4.0.30 | 156 | 3/1/2024 |
4.0.29 | 161 | 2/29/2024 |
4.0.28 | 148 | 2/29/2024 |
4.0.27 | 153 | 2/27/2024 |
4.0.26 | 156 | 2/26/2024 |
4.0.25 | 161 | 2/23/2024 |
4.0.24 | 148 | 2/23/2024 |
4.0.23 | 188 | 2/21/2024 |
4.0.22 | 165 | 2/19/2024 |
4.0.21 | 153 | 2/19/2024 |
4.0.20 | 158 | 2/19/2024 |
4.0.19 | 157 | 2/16/2024 |
4.0.18 | 169 | 2/15/2024 |
4.0.17 | 162 | 2/15/2024 |
4.0.16 | 156 | 2/15/2024 |
4.0.15 | 179 | 2/15/2024 |
4.0.14 | 156 | 2/8/2024 |
4.0.13 | 249 | 2/8/2024 |
4.0.12 | 156 | 2/2/2024 |
4.0.11 | 146 | 2/2/2024 |
4.0.10 | 143 | 2/1/2024 |
4.0.9 | 143 | 1/31/2024 |
4.0.8 | 144 | 1/30/2024 |
4.0.7 | 141 | 1/24/2024 |
4.0.6 | 140 | 1/19/2024 |
4.0.5 | 194 | 1/18/2024 |
4.0.4 | 182 | 1/17/2024 |
4.0.3 | 265 | 1/12/2024 |
4.0.2 | 163 | 1/10/2024 |
4.0.1 | 179 | 1/10/2024 |
4.0.0 | 152 | 1/9/2024 |