JJMasterData.Commons
4.0.33
Prefix Reserved
See the version list below for details.
dotnet add package JJMasterData.Commons --version 4.0.33
NuGet\Install-Package JJMasterData.Commons -Version 4.0.33
<PackageReference Include="JJMasterData.Commons" Version="4.0.33" />
paket add JJMasterData.Commons --version 4.0.33
#r "nuget: JJMasterData.Commons, 4.0.33"
// Install JJMasterData.Commons as a Cake Addin #addin nuget:?package=JJMasterData.Commons&version=4.0.33 // Install JJMasterData.Commons as a Cake Tool #tool nuget:?package=JJMasterData.Commons&version=4.0.33
<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. |
.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.Collections.Immutable (>= 8.0.0)
- 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 (5)
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.16 | 25 | 11/12/2024 |
4.3.15 | 114 | 11/5/2024 |
4.3.14 | 135 | 10/24/2024 |
4.3.13 | 136 | 10/23/2024 |
4.3.12 | 144 | 10/16/2024 |
4.3.11 | 133 | 10/15/2024 |
4.3.10 | 380 | 9/12/2024 |
4.3.9 | 177 | 9/11/2024 |
4.3.8 | 181 | 9/11/2024 |
4.3.7 | 180 | 9/10/2024 |
4.3.6 | 182 | 9/3/2024 |
4.3.5 | 175 | 9/2/2024 |
4.3.4 | 181 | 8/30/2024 |
4.3.3 | 170 | 8/29/2024 |
4.3.2 | 153 | 8/28/2024 |
4.3.1 | 167 | 8/28/2024 |
4.3.0 | 236 | 8/28/2024 |
4.3.0-rc | 227 | 8/14/2024 |
4.2.6 | 366 | 6/24/2024 |
4.2.5 | 195 | 6/17/2024 |
4.2.4 | 194 | 6/7/2024 |
4.2.3 | 200 | 6/5/2024 |
4.2.2 | 191 | 5/28/2024 |
4.2.1 | 187 | 5/27/2024 |
4.2.0 | 288 | 5/27/2024 |
4.2.0-preview1 | 153 | 5/14/2024 |
4.1.11 | 571 | 4/5/2024 |
4.1.10 | 223 | 4/5/2024 |
4.1.9 | 235 | 4/4/2024 |
4.1.8 | 212 | 4/3/2024 |
4.1.7 | 221 | 4/3/2024 |
4.1.6 | 218 | 4/2/2024 |
4.1.4 | 220 | 4/2/2024 |
4.1.3 | 245 | 4/2/2024 |
4.1.2 | 363 | 3/27/2024 |
4.1.1 | 240 | 3/25/2024 |
4.1.0 | 280 | 3/25/2024 |
4.0.34 | 448 | 3/1/2024 |
4.0.33 | 346 | 3/1/2024 |
4.0.32 | 350 | 3/1/2024 |
4.0.30 | 336 | 3/1/2024 |
4.0.29 | 327 | 2/29/2024 |
4.0.28 | 321 | 2/29/2024 |
4.0.27 | 325 | 2/27/2024 |
4.0.26 | 346 | 2/26/2024 |
4.0.25 | 346 | 2/23/2024 |
4.0.24 | 348 | 2/23/2024 |
4.0.23 | 370 | 2/21/2024 |
4.0.22 | 372 | 2/19/2024 |
4.0.21 | 358 | 2/19/2024 |
4.0.20 | 357 | 2/19/2024 |
4.0.19 | 356 | 2/16/2024 |
4.0.18 | 357 | 2/15/2024 |
4.0.17 | 379 | 2/15/2024 |
4.0.16 | 368 | 2/15/2024 |
4.0.15 | 384 | 2/15/2024 |
4.0.14 | 392 | 2/8/2024 |
4.0.13 | 460 | 2/8/2024 |
4.0.12 | 424 | 2/2/2024 |
4.0.11 | 423 | 2/2/2024 |
4.0.10 | 406 | 2/1/2024 |
4.0.9 | 412 | 1/31/2024 |
4.0.8 | 402 | 1/30/2024 |
4.0.7 | 438 | 1/24/2024 |
4.0.6 | 413 | 1/19/2024 |
4.0.5 | 481 | 1/18/2024 |
4.0.4 | 477 | 1/17/2024 |
4.0.3 | 545 | 1/12/2024 |
4.0.2 | 464 | 1/10/2024 |
4.0.1 | 463 | 1/10/2024 |
4.0.0 | 449 | 1/9/2024 |