AutoCrudAdmin 1.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package AutoCrudAdmin --version 1.1.2
NuGet\Install-Package AutoCrudAdmin -Version 1.1.2
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="AutoCrudAdmin" Version="1.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AutoCrudAdmin --version 1.1.2
#r "nuget: AutoCrudAdmin, 1.1.2"
#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 AutoCrudAdmin as a Cake Addin
#addin nuget:?package=AutoCrudAdmin&version=1.1.2

// Install AutoCrudAdmin as a Cake Tool
#tool nuget:?package=AutoCrudAdmin&version=1.1.2

AutoGridAdmin - Extensible Admin Panel with automatic CRUD operations

AutoGridAmin aims to simply the creation of admin panels with mostly data fetched from a database.

The following is supported out-of-the-box:

  1. Grid pages with filtering/sorting for all entities declared in DbContext
    • Custom data columns can be added
    • Custom action columns ca be added
  2. Create/Edit/Delete pages by primary key for all entities in the database
    • With related entities as dropdown lists
    • With enumerations as dropdown lists
  3. Enforces authentication
    • Disabled by default
    • Added easily with a simple config

Grid pages

For each entity in the DbContext, a page is created:

  • {PROJECT_URL}/projects
  • {PROJECT_URL}/tasks

For example, having the following:

<table> <tr> <th>Entities</th> <th>DbContext</th> </tr> <tr> <td>

public class Project
{
    [Key]
    public int Id { get; set; }
     
    public string Name { get; set; }
     
    public ICollection<Task> Tasks { get; set; }

    public override string ToString()
      => this.Name;
}

public class Task
{
   [Key]
   public string Id { get; set; }
   
   public string Name { get; set; }

   [Required]
   public DateTime DueDate { get; set; }

   [Required]
   public TaskExecutionType ExecutionType { get; set; }

   [Required]
   public int ProjectId { get; set; }

   public Project Project { get; set; }
}

</td> <td>

AutoCrudGridExampleDbContext : DbContext
{
  // ... setup stuff
  public DbSet<Task> Tasks { get; set; }

  public DbSet<Project> Projects { get; set; }
}

<br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/>

</td> </tr> </table>

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. 
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
1.1.30 1,231 12/7/2023
1.1.29 286 11/10/2023
1.1.28 133 10/31/2023
1.1.27 117 10/23/2023
1.1.26 705 7/6/2023
1.1.25 170 7/3/2023
1.1.24 200 6/14/2023
1.1.23 150 6/7/2023
1.1.22 203 6/6/2023
1.1.21 162 5/29/2023
1.1.20 164 5/26/2023
1.1.19 528 12/20/2022
1.1.18 606 9/14/2022
1.1.17 531 9/14/2022
1.1.16 658 3/7/2022
1.1.15 575 2/23/2022
1.1.14 582 2/14/2022
1.1.13 617 2/14/2022
1.1.12 1,562 11/26/2021
1.1.11 362 11/23/2021
1.1.10 369 11/23/2021
1.1.9 397 11/17/2021
1.1.8 432 11/12/2021
1.1.7 448 11/8/2021
1.1.6 480 11/5/2021
1.1.5 473 11/5/2021
1.1.4 439 11/5/2021
1.1.3 434 11/5/2021
1.1.2 441 11/5/2021
1.1.1 455 11/5/2021
1.1.0 438 11/1/2021
1.0.1 418 11/1/2021
1.0.0 443 11/1/2021