eQuantic.Core.Application.Crud 1.7.26

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

// Install eQuantic.Core.Application.Crud as a Cake Tool
#tool nuget:?package=eQuantic.Core.Application.Crud&version=1.7.26                

eQuantic.Core.Api.Crud Library

The eQuantic Core API CRUD provides all the implementation needed to publish CRUD APIs.

To install eQuantic.Core.Api.Crud, run the following command in the Package Manager Console

Install-Package eQuantic.Core.Api.Crud

Example of implementation

The data entities

[Table("orders")]
public class OrderData : EntityDataBase
{
    [Key]
    public string Id { get; set; } = string.Empty;
    public DateTime Date { get; set; }
    
    public virtual ICollection<OrderItemData> Items { get; set; } = new HashSet<OrderItemData>();
}

[Table("orderItems")]
public class OrderItemData : EntityDataBase, IWithReferenceId<OrderItemData, int>
{
    [Key]
    public int Id { get; set; }
    public int OrderId { get; set; }
    
    [ForeignKey(nameof(OrderId))]
    public virtual OrderData? Order { get; set; }
    
    [Required]
    [MaxLength(200)]
    public string Name { get; set; } = string.Empty;
}

The models

public class Order
{
    public string Id { get; set; } = string.Empty;
    public DateTime Date { get; set; }
}

public class OrderItem
{
    public int Id { get; set; }
    public int OrderId { get; set; }
    public string Name { get; set; } = string.Empty;
}

The request models

public class OrderRequest
{
    public DateTime? Date { get; set; }
}

public class OrderItemRequest
{
    public string? Name { get; set; }
}

The mappers

public class OrderMapper : IMapper<OrderData, Order>, IMapper<OrderRequest, OrderData>
{
    public Order? Map(OrderData? source)
    {
        return Map(source, new Order());
    }

    public Order? Map(OrderData? source, Order? destination)
    {
        if (source == null)
        {
            return null;
        }

        if (destination == null)
        {
            return Map(source);
        }

        destination.Id = source.Id;
        destination.Date = source.Date;

        return destination;
    }

    public OrderData? Map(OrderRequest? source)
    {
        return Map(source, new OrderData());
    }

    public OrderData? Map(OrderRequest? source, OrderData? destination)
    {
        if (source == null)
        {
            return null;
        }

        if (destination == null)
        {
            return Map(source);
        }
        
        destination.Date = source.Date ?? DateTime.UtcNow;

        return destination;
    }
}

The services

public interface IOrderService : ICrudService<Order, OrderRequest>
{
    
}

[MapCrudEndpoints]
public class OrderService : CrudServiceBase<Order, OrderRequest, OrderData, UserData>, IOrderService
{
    public OrderService(IQueryableUnitOfWork unitOfWork, IMapperFactory mapperFactory) : base(unitOfWork, mapperFactory)
    {
    }
}

The Program.cs

var builder = WebApplication.CreateBuilder(args);
var assembly = typeof(Program).Assembly;

builder.Services.AddDbContext<ExampleDbContext>(opt =>
    opt.UseInMemoryDatabase("ExampleDb"));
        
builder.Services.AddQueryableRepositories<ExampleUnitOfWork>(opt =>
{
    opt.FromAssembly(assembly)
        .AddLifetime(ServiceLifetime.Scoped);
});

builder.Services
    .AddMappers(opt => opt.FromAssembly(assembly))
    .AddTransient<IExampleService, ExampleService>()
    .AddControllers()
    .AddJsonOptions(options =>
    {
        options.JsonSerializerOptions.Converters.Add(new JsonStringEnumConverter());
        options.JsonSerializerOptions.PropertyNamingPolicy = JsonNamingPolicy.CamelCase;
    })
    .AddFilterModelBinder()
    .AddSortModelBinder();

builder.Services
    .AddEndpointsApiExplorer()
    .AddApiDocumentation(opt => opt.WithTitle("Example API"));

var app = builder.Build();

if (app.Environment.IsDevelopment())
{
    app.UseApiDocumentation();
}

app.UseHttpsRedirection();
app.UseRouting();
app.MapControllers();
app.MapCrud<Order, OrderRequest, IOrderService>();

app.Run();

or

...
app.MapAllCrud(opt => opt.FromAssembly(assembly));
app.Run();
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 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.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on eQuantic.Core.Application.Crud:

Package Downloads
eQuantic.Core.Api.Crud

eQuantic API CRUD Library

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.7.26 48 1/10/2025
1.7.25 34 1/8/2025
1.7.24 169 12/27/2024
1.7.23 187 12/26/2024
1.7.22 81 12/26/2024
1.7.21 240 11/20/2024
1.7.20 107 11/19/2024
1.7.19 207 11/9/2024
1.7.18 205 10/11/2024
1.7.17 169 10/4/2024
1.7.16 134 10/4/2024
1.7.15 123 10/3/2024
1.7.14 306 9/4/2024
1.7.13 156 9/2/2024
1.7.12 129 9/1/2024
1.7.11 159 8/25/2024
1.7.10 205 8/22/2024
1.7.9 136 8/2/2024
1.7.8 104 7/29/2024
1.7.7 95 7/28/2024
1.7.6 97 7/27/2024
1.7.5 158 7/23/2024
1.7.4 155 7/22/2024
1.7.3 218 6/26/2024
1.7.2 116 6/26/2024
1.7.1 211 5/31/2024
1.7.0 130 5/29/2024
1.6.26 189 5/18/2024
1.6.25 193 5/15/2024
1.6.24 125 5/14/2024
1.6.23 182 5/4/2024
1.6.22 137 5/4/2024
1.6.21 154 4/28/2024
1.6.20 157 4/21/2024
1.6.19 175 4/20/2024
1.6.18 141 4/20/2024
1.6.17 165 4/11/2024
1.6.16 148 4/11/2024
1.6.15 130 4/9/2024
1.6.14 161 4/4/2024
1.6.13 188 4/2/2024
1.6.12 207 3/21/2024
1.6.11 134 3/21/2024
1.6.10 200 3/18/2024
1.6.9 172 3/10/2024
1.6.8 231 2/18/2024
1.6.7 144 2/17/2024
1.6.6 179 2/14/2024
1.6.5 149 2/13/2024
1.6.4 171 2/12/2024
1.6.3 172 2/10/2024
1.6.2 141 2/10/2024
1.6.1 152 1/22/2024
1.6.0 323 12/21/2023
1.5.2 186 12/10/2023
1.5.1 164 12/5/2023
1.5.0 134 12/5/2023
1.4.0 165 12/3/2023
1.3.3 188 11/18/2023
1.3.2 154 11/18/2023
1.3.1 169 11/15/2023
1.3.0 147 11/15/2023
1.2.3 177 11/2/2023
1.2.2 145 11/2/2023
1.2.1 217 10/21/2023
1.2.0 164 10/21/2023
1.1.6 168 10/9/2023
1.1.5 165 10/7/2023
1.1.4 191 10/2/2023
1.1.3 165 10/1/2023
1.1.2 185 9/25/2023
1.1.1 145 9/24/2023
1.1.0 227 9/4/2023
1.0.14 242 8/13/2023
1.0.13 189 8/13/2023
1.0.12 166 8/13/2023
1.0.11 171 8/13/2023
1.0.10 190 8/8/2023
1.0.9 216 8/3/2023
1.0.8 192 7/30/2023
1.0.7 203 7/22/2023
1.0.6 185 7/21/2023
1.0.5 194 7/21/2023
1.0.4 189 7/20/2023
1.0.3 195 7/20/2023
1.0.2 188 7/19/2023
1.0.0.1 193 7/5/2023
1.0.0 191 7/5/2023

Generic CRUD endpoints for Entities