CRUDy 1.0.0

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

// Install CRUDy as a Cake Tool
#tool nuget:?package=CRUDy&version=1.0.0

CRUDy

CRUDy is a C# library based on .NET 8 and Entity Framework Core, designed to simplify CRUD (Create, Read, Update, Delete) operations in applications. It provides a generic and extensible implementation of CRUD services, enabling developers to focus on their application's business logic without worrying about common database operations.

Features

  • Generic CRUD Operations: Simplifies data access with generic repository patterns.
  • Entity Framework Core Integration: Utilizes EF Core for efficient database interactions.
  • Auditable Entities: Automatically tracks creation and modification details (CreatedDate, CreatedBy, UpdatedDate, UpdatedBy).
  • Async Support: Asynchronous methods for scalable and responsive applications.
  • Dependency Injection Ready: Seamlessly integrates with ASP.NET Core dependency injection.

Installation

You can install CRUDy via NuGet Package Manager:

dotnet add package CRUDy

Getting Started

1. Define Your Entities

Create your application-specific entities inheriting from AuditableEntity<TEntityId> provided by CRUDy :

public class Product : AuditableEntity<long> // long, string, int
{
    public string Name { get; set; }
    public decimal Price { get; set; }
    // Add other properties as needed
}

2. Implement Repository Interfaces

Define repository interfaces using ICrudyGenericRepository<TEntity, TEntityId> for each entity :

 public interface IProductRepository : ICrudyGenericRepository<Product,long>{
 }

3. Implement Repository Classes

Implement repository classes based on your interfaces, using CRUDy's base repository class :

public class ProductRepositoryImpl : CrudyGenericRepositoryImpl<Product, long>, IProductRepository
{
    public ProductRepositoryImpl(YourAppDBContext context) : base(context)
    {
    }
}

4. Register Services

Register your repository classes and DbContext in the ASP.NET Core Program.cs or Startup.cs file:

builder.Services.AddScoped(typeof(ICrudyGenericRepository<,>), typeof(CrudyGenericRepositoryImpl<,>));

// Your services

builder.Services.AddScoped<IProductRepository, ProductRepositoryImpl>();  

Contributing

We welcome contributions! If you find any issues or have suggestions for improvements, please feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.0.0 73 6/16/2024