IronAlpine.Data.EFCore
0.3.2
See the version list below for details.
dotnet add package IronAlpine.Data.EFCore --version 0.3.2
NuGet\Install-Package IronAlpine.Data.EFCore -Version 0.3.2
<PackageReference Include="IronAlpine.Data.EFCore" Version="0.3.2" />
<PackageVersion Include="IronAlpine.Data.EFCore" Version="0.3.2" />
<PackageReference Include="IronAlpine.Data.EFCore" />
paket add IronAlpine.Data.EFCore --version 0.3.2
#r "nuget: IronAlpine.Data.EFCore, 0.3.2"
#:package IronAlpine.Data.EFCore@0.3.2
#addin nuget:?package=IronAlpine.Data.EFCore&version=0.3.2
#tool nuget:?package=IronAlpine.Data.EFCore&version=0.3.2
IronAlpine.Data.EFCore
Entity Framework Core provider package for IronAlpine.Data.Abstractions.
Install
dotnet add package IronAlpine.Data.EFCore
Optional bridge for mediator pipeline behaviors:
dotnet add package IronAlpine.Data.EFCore.Mediator
Registration
builder.Services.AddIronAlpineDataEfCore<AppDbContext>(options =>
{
options.SaveChangesPolicyName = ResiliencePolicyNames.SaveChanges;
});
Includes
- concrete repositories for read/write/aggregate/projection contracts
- EF
IUnitOfWorkimplementation - interceptors:
- auditing
- soft-delete
- version
- occurred-on
- model contributor chain
- built-in
AuditLogstable mapping contributor (AuditLogModelContributor)- required fields and defaults
- indexes for
Timestamp,UserId+Timestamp,EntityName+EntityId
- paging/sorting helpers
- resilience save extensions
Enumeration<TEnum>conversion helpers:HasEnumerationConversion<TEnum>()HasNullableEnumerationConversion<TEnum>()
Value Object Policy
Generic value object converters are intentionally not provided.
Use explicit model mapping in your DbContext configuration:
OwnsOne(...)- explicit
HasConversion(...)when needed
This keeps query behavior and migration shape deterministic.
Audit Log Behavior
AuditLogModelContributor adds AuditLog mapping to every registered EF model chain.
- table name is fixed:
AuditLogs - row creation is provided by mediator auditing behavior
- commit timing follows your transaction/save policy
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. 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. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- IronAlpine.Data.Abstractions (>= 0.3.2)
- IronAlpine.Framework.Abstractions (>= 0.3.0)
- IronAlpine.Kernel (>= 0.2.3)
- IronAlpine.Resilience (>= 0.2.0)
- Microsoft.EntityFrameworkCore (>= 9.0.7)
- Microsoft.EntityFrameworkCore.Relational (>= 9.0.7)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.7)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 9.0.7)
-
net9.0
- IronAlpine.Data.Abstractions (>= 0.3.2)
- IronAlpine.Framework.Abstractions (>= 0.3.0)
- IronAlpine.Kernel (>= 0.2.3)
- IronAlpine.Resilience (>= 0.2.0)
- Microsoft.EntityFrameworkCore (>= 9.0.7)
- Microsoft.EntityFrameworkCore.Relational (>= 9.0.7)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.7)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 9.0.7)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on IronAlpine.Data.EFCore:
| Package | Downloads |
|---|---|
|
IronAlpine.Data.EFCore.Mediator
Mediator pipeline behaviors that bridge IronAlpine.Mediator and IronAlpine.Data.EFCore. |
|
|
IronAlpine.Messaging.InboxOutbox.EFCore
EF Core inbox-outbox implementation for integration events with claim-based processing, retries, database dead-letter persistence, and hosted worker services. |
|
|
IronAlpine.Security.Authorization.EFCore
Entity Framework Core store and model mapping for IronAlpine security authorization. |
|
|
IronAlpine.Caching.Redis
Redis implementation for IronAlpine.Caching with EF Core-backed cache settings, pub/sub invalidation for multi-pod deployments, and table contributor support. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0-rc9 | 0 | 3/10/2026 |
| 1.0.0-rc8 | 0 | 3/10/2026 |
| 1.0.0-rc7 | 0 | 3/10/2026 |
| 1.0.0-rc6 | 0 | 3/10/2026 |
| 1.0.0-rc5 | 0 | 3/10/2026 |
| 1.0.0-rc4 | 0 | 3/10/2026 |
| 1.0.0-rc3 | 0 | 3/10/2026 |
| 1.0.0-rc10 | 0 | 3/11/2026 |
| 1.0.0-rc1 | 43 | 3/9/2026 |
| 0.3.2 | 120 | 3/5/2026 |
| 0.3.1 | 53 | 3/5/2026 |
| 0.3.0 | 128 | 3/4/2026 |
| 0.2.0 | 122 | 3/2/2026 |
Stable mediator release with request/response, notification publish strategies, streaming, and dependency injection integration.