JJMasterData.Commons
4.0.4
Prefix Reserved
See the version list below for details.
dotnet add package JJMasterData.Commons --version 4.0.4
NuGet\Install-Package JJMasterData.Commons -Version 4.0.4
<PackageReference Include="JJMasterData.Commons" Version="4.0.4" />
paket add JJMasterData.Commons --version 4.0.4
#r "nuget: JJMasterData.Commons, 4.0.4"
// Install JJMasterData.Commons as a Cake Addin #addin nuget:?package=JJMasterData.Commons&version=4.0.4 // Install JJMasterData.Commons as a Cake Tool #tool nuget:?package=JJMasterData.Commons&version=4.0.4
<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 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.4)
- 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.30 | 76 | 2/12/2025 |
4.3.29 | 106 | 2/10/2025 |
4.3.28 | 110 | 2/7/2025 |
4.3.27 | 123 | 2/3/2025 |
4.3.26 | 63 | 1/29/2025 |
4.3.25 | 108 | 1/27/2025 |
4.3.24 | 136 | 1/22/2025 |
4.3.23 | 86 | 1/9/2025 |
4.3.22 | 138 | 1/6/2025 |
4.3.21 | 124 | 1/6/2025 |
4.3.19 | 161 | 11/24/2024 |
4.3.18 | 155 | 11/21/2024 |
4.3.17 | 141 | 11/21/2024 |
4.3.16 | 174 | 11/12/2024 |
4.3.15 | 143 | 11/5/2024 |
4.3.14 | 175 | 10/24/2024 |
4.3.13 | 161 | 10/23/2024 |
4.3.12 | 166 | 10/16/2024 |
4.3.11 | 154 | 10/15/2024 |
4.3.10 | 400 | 9/12/2024 |
4.3.9 | 192 | 9/11/2024 |
4.3.8 | 196 | 9/11/2024 |
4.3.7 | 199 | 9/10/2024 |
4.3.6 | 200 | 9/3/2024 |
4.3.5 | 194 | 9/2/2024 |
4.3.4 | 217 | 8/30/2024 |
4.3.3 | 189 | 8/29/2024 |
4.3.2 | 168 | 8/28/2024 |
4.3.1 | 181 | 8/28/2024 |
4.3.0 | 260 | 8/28/2024 |
4.3.0-rc | 239 | 8/14/2024 |
4.2.6 | 381 | 6/24/2024 |
4.2.5 | 208 | 6/17/2024 |
4.2.4 | 210 | 6/7/2024 |
4.2.3 | 213 | 6/5/2024 |
4.2.2 | 202 | 5/28/2024 |
4.2.1 | 198 | 5/27/2024 |
4.2.0 | 305 | 5/27/2024 |
4.2.0-preview1 | 164 | 5/14/2024 |
4.1.11 | 582 | 4/5/2024 |
4.1.10 | 234 | 4/5/2024 |
4.1.9 | 250 | 4/4/2024 |
4.1.8 | 225 | 4/3/2024 |
4.1.7 | 234 | 4/3/2024 |
4.1.6 | 229 | 4/2/2024 |
4.1.4 | 232 | 4/2/2024 |
4.1.3 | 254 | 4/2/2024 |
4.1.2 | 374 | 3/27/2024 |
4.1.1 | 251 | 3/25/2024 |
4.1.0 | 291 | 3/25/2024 |
4.0.34 | 459 | 3/1/2024 |
4.0.33 | 355 | 3/1/2024 |
4.0.32 | 359 | 3/1/2024 |
4.0.30 | 347 | 3/1/2024 |
4.0.29 | 338 | 2/29/2024 |
4.0.28 | 333 | 2/29/2024 |
4.0.27 | 337 | 2/27/2024 |
4.0.26 | 359 | 2/26/2024 |
4.0.25 | 358 | 2/23/2024 |
4.0.24 | 362 | 2/23/2024 |
4.0.23 | 382 | 2/21/2024 |
4.0.22 | 384 | 2/19/2024 |
4.0.21 | 375 | 2/19/2024 |
4.0.20 | 386 | 2/19/2024 |
4.0.19 | 370 | 2/16/2024 |
4.0.18 | 370 | 2/15/2024 |
4.0.17 | 394 | 2/15/2024 |
4.0.16 | 381 | 2/15/2024 |
4.0.15 | 398 | 2/15/2024 |
4.0.14 | 405 | 2/8/2024 |
4.0.13 | 473 | 2/8/2024 |
4.0.12 | 433 | 2/2/2024 |
4.0.11 | 434 | 2/2/2024 |
4.0.10 | 415 | 2/1/2024 |
4.0.9 | 425 | 1/31/2024 |
4.0.8 | 411 | 1/30/2024 |
4.0.7 | 447 | 1/24/2024 |
4.0.6 | 424 | 1/19/2024 |
4.0.5 | 490 | 1/18/2024 |
4.0.4 | 486 | 1/17/2024 |
4.0.3 | 554 | 1/12/2024 |
4.0.2 | 473 | 1/10/2024 |
4.0.1 | 472 | 1/10/2024 |
4.0.0 | 461 | 1/9/2024 |