eQuantic.Core.Api
1.6.5
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package eQuantic.Core.Api --version 1.6.5
NuGet\Install-Package eQuantic.Core.Api -Version 1.6.5
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.Api" Version="1.6.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add eQuantic.Core.Api --version 1.6.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: eQuantic.Core.Api, 1.6.5"
#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.Api as a Cake Addin #addin nuget:?package=eQuantic.Core.Api&version=1.6.5 // Install eQuantic.Core.Api as a Cake Tool #tool nuget:?package=eQuantic.Core.Api&version=1.6.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net7.0
- eQuantic.Core.Api.Error (>= 1.6.5)
- eQuantic.Core.Application (>= 1.6.5)
- eQuantic.Core.Exceptions (>= 1.6.5)
- eQuantic.Core.Mvc (>= 2.0.3)
- Swashbuckle.AspNetCore (>= 6.5.0)
- Swashbuckle.AspNetCore.Annotations (>= 6.5.0)
-
net8.0
- eQuantic.Core.Api.Error (>= 1.6.5)
- eQuantic.Core.Application (>= 1.6.5)
- eQuantic.Core.Exceptions (>= 1.6.5)
- eQuantic.Core.Mvc (>= 2.0.3)
- Swashbuckle.AspNetCore (>= 6.5.0)
- Swashbuckle.AspNetCore.Annotations (>= 6.5.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on eQuantic.Core.Api:
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.9 | 153 | 10/11/2024 |
1.7.8 | 151 | 10/4/2024 |
1.7.7 | 106 | 10/4/2024 |
1.7.6 | 108 | 10/3/2024 |
1.7.5 | 279 | 9/4/2024 |
1.7.4 | 158 | 9/1/2024 |
1.7.3 | 143 | 8/25/2024 |
1.7.2 | 198 | 7/29/2024 |
1.7.1 | 92 | 7/28/2024 |
1.7.0 | 87 | 7/28/2024 |
1.6.25 | 90 | 7/27/2024 |
1.6.24 | 169 | 7/22/2024 |
1.6.23 | 234 | 6/23/2024 |
1.6.22 | 96 | 6/23/2024 |
1.6.21 | 105 | 6/22/2024 |
1.6.20 | 96 | 6/21/2024 |
1.6.19 | 252 | 5/18/2024 |
1.6.18 | 239 | 5/4/2024 |
1.6.17 | 323 | 4/11/2024 |
1.6.16 | 137 | 4/11/2024 |
1.6.15 | 118 | 4/9/2024 |
1.6.14 | 136 | 4/4/2024 |
1.6.13 | 146 | 4/2/2024 |
1.6.12 | 168 | 3/21/2024 |
1.6.11 | 118 | 3/21/2024 |
1.6.10 | 146 | 3/18/2024 |
1.6.9 | 135 | 3/10/2024 |
1.6.8 | 139 | 2/18/2024 |
1.6.7 | 124 | 2/17/2024 |
1.6.6 | 129 | 2/14/2024 |
1.6.5 | 125 | 2/13/2024 |
1.6.4 | 125 | 2/12/2024 |
1.6.3 | 125 | 2/10/2024 |
1.6.2 | 112 | 2/10/2024 |
1.6.1 | 143 | 1/22/2024 |
1.6.0 | 206 | 12/21/2023 |
1.5.2 | 159 | 12/10/2023 |
1.5.1 | 160 | 12/5/2023 |
1.5.0 | 155 | 12/5/2023 |
1.4.0 | 140 | 12/3/2023 |
1.3.3 | 188 | 11/18/2023 |
1.3.2 | 159 | 11/18/2023 |
1.3.1 | 164 | 11/15/2023 |
1.3.0 | 114 | 11/15/2023 |
1.2.3 | 154 | 11/2/2023 |
1.2.2 | 118 | 11/2/2023 |
1.2.1 | 208 | 10/21/2023 |
1.2.0 | 118 | 10/21/2023 |
1.1.6 | 159 | 10/9/2023 |
1.1.5 | 153 | 10/7/2023 |
1.1.4 | 168 | 10/2/2023 |
1.1.3 | 135 | 10/1/2023 |
1.1.2 | 170 | 9/25/2023 |
1.1.1 | 131 | 9/24/2023 |
1.1.0 | 205 | 9/4/2023 |
1.0.14 | 266 | 8/13/2023 |
1.0.13 | 181 | 8/13/2023 |
1.0.12 | 169 | 8/13/2023 |
1.0.11 | 170 | 8/13/2023 |
1.0.10 | 163 | 8/8/2023 |
1.0.9 | 207 | 8/3/2023 |
1.0.8 | 179 | 7/30/2023 |
1.0.7 | 181 | 7/22/2023 |
1.0.6 | 176 | 7/21/2023 |
1.0.5 | 179 | 7/21/2023 |
1.0.4 | 174 | 7/20/2023 |
1.0.3 | 163 | 7/20/2023 |
1.0.2 | 186 | 7/19/2023 |
1.0.0.1 | 176 | 7/5/2023 |
1.0.0 | 153 | 7/5/2023 |
Common API implementations