JCTools.GenericCrud 2.0.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.0.0-beta1
NuGet\Install-Package JCTools.GenericCrud -Version 2.0.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.0.0-beta1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JCTools.GenericCrud --version 2.0.0-beta1
#r "nuget: JCTools.GenericCrud, 2.0.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.
// Install JCTools.GenericCrud as a Cake Addin
#addin nuget:?package=JCTools.GenericCrud&version=2.0.0-beta1&prerelease

// Install JCTools.GenericCrud as a Cake Tool
#tool nuget:?package=JCTools.GenericCrud&version=2.0.0-beta1&prerelease

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.0.0-beta1

Requirements

.net core 2.1

.net core 2.1

The bootstrap v4.0.0 and highers are unsupported

Usage

  1. Add the package to your application
Install-Package JCTools.GenericCrud -Version 2.0.0

Or

dotnet add package JCTools.GenericCrud --version 2.0.0
  1. Add the next lines in the method ConfigureServices of your Startup class
    services.ConfigureGenericCrud<MyContext>(o =>
    {
        // Indicate if desired use Modals 
        o.UseModals = true;
        // add the models type to manage with the package
        o.Models.Add<Models.Country>(); 
        o.Models.Add<Models.Genre>(nameof(Models.Genre.Name));
        o.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

  1. Add the next line in the UseMvc middleware call, this in the method Configure of your Startup class
routes.MapCrudRoutes();

     Your code should see similar to the next code

   app.UseMvc(routes =>
   {
       routes.MapCrudRoutes(); // add this line
       routes.MapRoute(
           name: "default",
           template: "{controller=Home}/{action=Index}/{id?}");

   });
  1. Run to app and access at the url http://localhost:5000/[ModelName], sample: http://localhost:5000/Country. In the browser you should see a similar page to : Sample index page

Custom controllers

If your desired personalize your controllers, add additional actions or override the default actions, then

  1. Not add the model to manage in the step 3 of the last section
  2. Create a new controller the inherits from JCTools.GenericCrud.Controllers.GenericController<TDbContext, TModel, TKey>. sample
using System;
using JCTools.GenericCrud.Controllers;
using JCTools.GenericCrud.Services;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Localization;
using Microsoft.Extensions.Logging;

namespace Test.Controllers
{
    public class MovieController : GenericController<Data.Context, Models.Movie, int>
    {
        public MovieController(IServiceProvider serviceProvider) 
        : base(serviceProvider)
        { 
            // Add your custom process, eg;
            Settings.UseModals = false;
        }
    }
}
  1. (optional) If you override the OnActionExecuting(ActionExecutingContext filterContext) or OnActionExecutionAsync(ActionExecutingContext context, ActionExecutionDelegate next) controller methods, make sure to invoke the base methods for the correct initializations of the controller settings
    //...
    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {        
        base.OnActionExecuting(filterContext);
        // Add your custom process here

    }
    
    public override Task OnActionExecutionAsync(ActionExecutingContext context, ActionExecutionDelegate next)
    {
        // Add your custom process here
        return base.OnActionExecutionAsync(context, next);
    }
    //...
  1. Run to app and access at the url http://localhost:5000/Movie,

Changes of the version 2.0.0

  • The follows interfaces was replaced for a best definition and structure:
    • IBase → IViewModel
    • IBaseDetails, ICrudDetails → IDetailsModel
    • ICrudEdit → IEditModel
    • ICrudList → IIndexModel
  • The follows models was replaced by the CrudModel class
    • Base
    • CrudDetails
    • CrudEdit
    • CrudList
  • The IControllerOptions interface and ControllerOptions class was removed for being unnecessary in the new structure
  • The extensors methods GetLocalizedString(...) for the IStringLocalizer interfaces was moved to the StringLocalizerExtensors class

License

MIT License

Product 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.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
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 322 12/8/2022
2.2.1 378 3/14/2021
2.2.0 327 2/2/2021
2.1.0 350 1/19/2021
2.1.0-beta1 286 1/10/2021
2.0.0 366 1/9/2021
2.0.0-beta4 271 1/6/2021
2.0.0-beta2 205 1/4/2021
2.0.0-beta1 273 12/27/2020
1.0.5 995 5/11/2018
1.0.4.2 1,043 5/8/2018
1.0.4.1 1,032 5/8/2018
1.0.4 989 5/7/2018
1.0.3 1,008 5/6/2018
1.0.2 1,011 4/19/2018
1.0.1 1,034 4/13/2018
1.0.0 1,042 3/19/2018