JJMasterData.Commons
4.0.0
Prefix Reserved
See the version list below for details.
dotnet add package JJMasterData.Commons --version 4.0.0
NuGet\Install-Package JJMasterData.Commons -Version 4.0.0
<PackageReference Include="JJMasterData.Commons" Version="4.0.0" />
paket add JJMasterData.Commons --version 4.0.0
#r "nuget: JJMasterData.Commons, 4.0.0"
// Install JJMasterData.Commons as a Cake Addin #addin nuget:?package=JJMasterData.Commons&version=4.0.0 // Install JJMasterData.Commons as a Cake Tool #tool nuget:?package=JJMasterData.Commons&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 was computed. 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 was computed. 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. |
-
.NETStandard 2.0
- Microsoft.Data.SqlClient (>= 5.1.1)
- Microsoft.Extensions.Caching.Memory (>= 6.0.1)
- Microsoft.Extensions.Configuration.Json (>= 6.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Localization (>= 6.0.0)
- Microsoft.Extensions.Logging (>= 6.0.0)
- Microsoft.Extensions.Logging.Configuration (>= 6.0.0)
- Newtonsoft.Json (>= 13.0.3)
- System.Configuration.ConfigurationManager (>= 6.0.1)
- System.Data.Common (>= 4.3.0)
- System.Diagnostics.EventLog (>= 6.0.0)
- System.Linq.Async (>= 6.0.1)
- System.Threading.Channels (>= 7.0.0)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on JJMasterData.Commons:
Package | Downloads |
---|---|
JJMasterData.Core
JJMasterData library to render JJMasterData's components. |
|
JJMasterData.Hangfire
JJMasterData Hangfire support to background tasks, like exportation and importation. |
|
JJMasterData.MongoDB
JJMasterData Hangfire support to background tasks, like exportation and importation. |
|
JJMasterData.ReceitaFederal
Plugin com utilidades de consulta de CNPJ, CPF e CEP na Receita Federal. Suporta SIntegra e ServicesHub. |
|
JJMasterData.Python
JJMasterData IronPython support for Actions and FormEvents. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.3.33 | 158 | 2/26/2025 |
4.3.32 | 143 | 2/25/2025 |
4.3.31 | 140 | 2/24/2025 |
4.3.30 | 152 | 2/12/2025 |
4.3.29 | 154 | 2/10/2025 |
4.3.28 | 164 | 2/7/2025 |
4.3.27 | 154 | 2/3/2025 |
4.3.26 | 138 | 1/29/2025 |
4.3.25 | 148 | 1/27/2025 |
4.3.24 | 175 | 1/22/2025 |
4.3.23 | 128 | 1/9/2025 |
4.3.22 | 151 | 1/6/2025 |
4.3.21 | 136 | 1/6/2025 |
4.3.19 | 166 | 11/24/2024 |
4.3.18 | 160 | 11/21/2024 |
4.3.17 | 145 | 11/21/2024 |
4.3.16 | 182 | 11/12/2024 |
4.3.15 | 149 | 11/5/2024 |
4.3.14 | 182 | 10/24/2024 |
4.3.13 | 166 | 10/23/2024 |
4.3.12 | 170 | 10/16/2024 |
4.3.11 | 158 | 10/15/2024 |
4.3.10 | 405 | 9/12/2024 |
4.3.9 | 202 | 9/11/2024 |
4.3.8 | 202 | 9/11/2024 |
4.3.7 | 205 | 9/10/2024 |
4.3.6 | 204 | 9/3/2024 |
4.3.5 | 198 | 9/2/2024 |
4.3.4 | 221 | 8/30/2024 |
4.3.3 | 191 | 8/29/2024 |
4.3.2 | 172 | 8/28/2024 |
4.3.1 | 185 | 8/28/2024 |
4.3.0 | 270 | 8/28/2024 |
4.3.0-rc | 243 | 8/14/2024 |
4.2.6 | 388 | 6/24/2024 |
4.2.5 | 212 | 6/17/2024 |
4.2.4 | 216 | 6/7/2024 |
4.2.3 | 217 | 6/5/2024 |
4.2.2 | 206 | 5/28/2024 |
4.2.1 | 202 | 5/27/2024 |
4.2.0 | 309 | 5/27/2024 |
4.2.0-preview1 | 168 | 5/14/2024 |
4.1.11 | 586 | 4/5/2024 |
4.1.10 | 238 | 4/5/2024 |
4.1.9 | 254 | 4/4/2024 |
4.1.8 | 229 | 4/3/2024 |
4.1.7 | 238 | 4/3/2024 |
4.1.6 | 233 | 4/2/2024 |
4.1.4 | 236 | 4/2/2024 |
4.1.3 | 258 | 4/2/2024 |
4.1.2 | 378 | 3/27/2024 |
4.1.1 | 258 | 3/25/2024 |
4.1.0 | 295 | 3/25/2024 |
4.0.34 | 466 | 3/1/2024 |
4.0.33 | 362 | 3/1/2024 |
4.0.32 | 365 | 3/1/2024 |
4.0.30 | 351 | 3/1/2024 |
4.0.29 | 343 | 2/29/2024 |
4.0.28 | 337 | 2/29/2024 |
4.0.27 | 341 | 2/27/2024 |
4.0.26 | 363 | 2/26/2024 |
4.0.25 | 362 | 2/23/2024 |
4.0.24 | 366 | 2/23/2024 |
4.0.23 | 390 | 2/21/2024 |
4.0.22 | 392 | 2/19/2024 |
4.0.21 | 384 | 2/19/2024 |
4.0.20 | 394 | 2/19/2024 |
4.0.19 | 375 | 2/16/2024 |
4.0.18 | 374 | 2/15/2024 |
4.0.17 | 398 | 2/15/2024 |
4.0.16 | 385 | 2/15/2024 |
4.0.15 | 408 | 2/15/2024 |
4.0.14 | 409 | 2/8/2024 |
4.0.13 | 477 | 2/8/2024 |
4.0.12 | 437 | 2/2/2024 |
4.0.11 | 438 | 2/2/2024 |
4.0.10 | 419 | 2/1/2024 |
4.0.9 | 429 | 1/31/2024 |
4.0.8 | 416 | 1/30/2024 |
4.0.7 | 451 | 1/24/2024 |
4.0.6 | 428 | 1/19/2024 |
4.0.5 | 494 | 1/18/2024 |
4.0.4 | 490 | 1/17/2024 |
4.0.3 | 558 | 1/12/2024 |
4.0.2 | 477 | 1/10/2024 |
4.0.1 | 476 | 1/10/2024 |
4.0.0 | 465 | 1/9/2024 |