MKS.Repository.EntityFrameworkCore
9.3.1
See the version list below for details.
dotnet add package MKS.Repository.EntityFrameworkCore --version 9.3.1
NuGet\Install-Package MKS.Repository.EntityFrameworkCore -Version 9.3.1
<PackageReference Include="MKS.Repository.EntityFrameworkCore" Version="9.3.1" />
<PackageVersion Include="MKS.Repository.EntityFrameworkCore" Version="9.3.1" />
<PackageReference Include="MKS.Repository.EntityFrameworkCore" />
paket add MKS.Repository.EntityFrameworkCore --version 9.3.1
#r "nuget: MKS.Repository.EntityFrameworkCore, 9.3.1"
#:package MKS.Repository.EntityFrameworkCore@9.3.1
#addin nuget:?package=MKS.Repository.EntityFrameworkCore&version=9.3.1
#tool nuget:?package=MKS.Repository.EntityFrameworkCore&version=9.3.1
Entity Framework Core implementation of MKS Repository abstractions, providing concrete repository classes with full EF Core integration and performance optimizations.
| 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 was computed. 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. |
-
net9.0
- Ardalis.Specification.EntityFrameworkCore (>= 9.2.0)
- Microsoft.EntityFrameworkCore (>= 9.0.8)
- Microsoft.EntityFrameworkCore.Relational (>= 9.0.8)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.8)
- MKS.Repository.Abstractions (>= 9.3.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on MKS.Repository.EntityFrameworkCore:
| Package | Downloads |
|---|---|
|
MKS.CQRS.EntityFrameworkCore
Entity Framework Core implementation of CQRS patterns using MediatR and Repository pattern with configurable Microsoft.Extensions.Logging support. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.4 | 301 | 3/25/2026 |
| 10.0.3 | 272 | 3/18/2026 |
| 10.0.2 | 176 | 3/9/2026 |
| 10.0.1 | 140 | 3/4/2026 |
| 10.0.0 | 357 | 11/13/2025 |
| 9.4.2 | 614 | 11/17/2025 |
| 9.4.1 | 409 | 11/17/2025 |
| 9.4.0 | 309 | 11/11/2025 |
| 9.3.1 | 228 | 11/6/2025 |
| 9.3.0 | 216 | 11/5/2025 |
| 9.2.4 | 319 | 9/11/2025 |
| 9.2.3 | 197 | 9/10/2025 |
| 3.1.6 | 155 | 1/19/2026 |
| 3.1.5 | 327 | 12/17/2025 |
| 3.1.4 | 316 | 12/17/2025 |
| 3.1.3 | 327 | 12/16/2025 |
| 3.1.2 | 311 | 12/16/2025 |
| 3.1.1 | 330 | 12/16/2025 |
| 3.1.0 | 265 | 12/14/2025 |
| 3.0.0 | 226 | 12/5/2025 |
Version 9.3.1: Added AutoCommit parameter to DbTransactionScope for manual transaction control.
New: AutoCommit constructor parameter (default true) - when false, requires explicit CommitAsync/RollbackAsync calls.
Manual mode behavior: transactions rollback on dispose if not explicitly committed or rolled back.
Version 9.3.0: Implemented transaction support with DbTransactionScope.
New: DbTransactionScope class implementing ITransactionScope for EF Core transactions.
All repository methods support optional transaction parameter with configurable auto-save behavior.
Transactions auto-commit on successful disposal, auto-rollback on exceptions.
ExecuteDeleteAsync and ExecuteUpdateAsync operations now properly participate in transactions.
Enhanced transactional consistency across multiple repository operations.