IronAlpine.Data.EFCore 0.3.2

There is a newer prerelease version of this package available.
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
                    
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="IronAlpine.Data.EFCore" Version="0.3.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IronAlpine.Data.EFCore" Version="0.3.2" />
                    
Directory.Packages.props
<PackageReference Include="IronAlpine.Data.EFCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add IronAlpine.Data.EFCore --version 0.3.2
                    
#r "nuget: IronAlpine.Data.EFCore, 0.3.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.
#:package IronAlpine.Data.EFCore@0.3.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=IronAlpine.Data.EFCore&version=0.3.2
                    
Install as a Cake Addin
#tool nuget:?package=IronAlpine.Data.EFCore&version=0.3.2
                    
Install as a Cake Tool

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 IUnitOfWork implementation
  • interceptors:
    • auditing
    • soft-delete
    • version
    • occurred-on
  • model contributor chain
  • built-in AuditLogs table 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.