JCTools.GenericCrud 2.1.0-beta1

This is a prerelease version of JCTools.GenericCrud.
There is a newer version of this package available.
See the version list below for details.
dotnet add package JCTools.GenericCrud --version 2.1.0-beta1
                    
NuGet\Install-Package JCTools.GenericCrud -Version 2.1.0-beta1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="JCTools.GenericCrud" Version="2.1.0-beta1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="JCTools.GenericCrud" Version="2.1.0-beta1" />
                    
Directory.Packages.props
<PackageReference Include="JCTools.GenericCrud" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add JCTools.GenericCrud --version 2.1.0-beta1
                    
#r "nuget: JCTools.GenericCrud, 2.1.0-beta1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package JCTools.GenericCrud@2.1.0-beta1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=JCTools.GenericCrud&version=2.1.0-beta1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=JCTools.GenericCrud&version=2.1.0-beta1&prerelease
                    
Install as a Cake Tool

JCTools.GenericCrud

Simplification of the Create, Read, Update and Delete web pages of the application models.

Overview

All application required multiple pages for edited the base models. This pages generally are equals to each other.

This package allows reduce this task at minimum of actions.

You only require create and configure your models, and this package create the necessary controllers, views and actions for the Create, Read, Update and Delete actions.

Status

v2.1.0-beta1

Requirements

.net core 2.1, .net core 3.1 or .net 5.0

bootstrap 3.3.7 or bootstrap 4.3.1

font awesome 5.0.6

Usage

  1. Add the package to your application

    Install-Package JCTools.GenericCrud -Version 2.1.0-beta1
    

    Or

    dotnet add package JCTools.GenericCrud --version 2.1.0-beta1
    
  2. Add the next lines in the method ConfigureServices of your Startup class

        services.ConfigureGenericCrud<MyContext>(options =>
        {
            // options is an instance from JCTools.GenericCrud.Settings.IOptions
            // use this interface to custom the generated CRUDs globally
            // eg;
    
            // Indicate if desired use Modals
            options.UseModals = true;
            // Set the bootstrap version to be used (default v4.3.1)
            options.BootstrapVersion = Settings.Bootstrap.Version3;
            // add the models type to manage with the package
            options.Models.Add<Models.Country>(); 
            options.Models.Add<Models.Genre>(nameof(Models.Genre.Name));
    
            // add a model with a custom controller
            options.Models.Add<Models.Movie, int, MovieController, Data.Context>();
        });
    

    Note: From the version 2.0.0 the next features was marked how to obsolete and will be removed in future versions:

    • The method o.Models.Add(Type modelType, string keyPropertyName = "Id", string controllerName = "").
    • The ContextCreator option
  3. Run to app and access at the url http://localhost:5000/[ModelName], sample: http://localhost:5000/Country.

For complete documentation, see the project repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.2.2 397 12/8/2022
2.2.1 470 3/14/2021
2.2.0 420 2/2/2021
2.1.0 447 1/19/2021
2.1.0-beta1 368 1/10/2021
2.0.0 455 1/9/2021
2.0.0-beta4 353 1/6/2021
2.0.0-beta2 292 1/4/2021
2.0.0-beta1 358 12/27/2020
1.0.5 1,197 5/11/2018
1.0.4.2 1,333 5/8/2018
1.0.4.1 1,325 5/8/2018
1.0.4 1,277 5/7/2018
1.0.3 1,298 5/6/2018
1.0.2 1,301 4/19/2018
1.0.1 1,324 4/13/2018
1.0.0 1,338 3/19/2018