MKS.Repository.EntityFrameworkCore
3.1.0
See the version list below for details.
dotnet add package MKS.Repository.EntityFrameworkCore --version 3.1.0
NuGet\Install-Package MKS.Repository.EntityFrameworkCore -Version 3.1.0
<PackageReference Include="MKS.Repository.EntityFrameworkCore" Version="3.1.0" />
<PackageVersion Include="MKS.Repository.EntityFrameworkCore" Version="3.1.0" />
<PackageReference Include="MKS.Repository.EntityFrameworkCore" />
paket add MKS.Repository.EntityFrameworkCore --version 3.1.0
#r "nuget: MKS.Repository.EntityFrameworkCore, 3.1.0"
#:package MKS.Repository.EntityFrameworkCore@3.1.0
#addin nuget:?package=MKS.Repository.EntityFrameworkCore&version=3.1.0
#tool nuget:?package=MKS.Repository.EntityFrameworkCore&version=3.1.0
Entity Framework Core implementation of MKS Repository abstractions, providing concrete repository classes with full EF Core 3.1.20 integration and performance optimizations.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. 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. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Ardalis.Specification (>= 9.3.1)
- Microsoft.EntityFrameworkCore (>= 3.1.20)
- Microsoft.EntityFrameworkCore.Relational (>= 3.1.20)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 3.1.20)
- MKS.Repository.Abstractions (>= 3.1.0)
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 3.1.0: Removed Z.EntityFramework.Plus dependency, added custom ExecuteUpdate/ExecuteDelete extensions with multi-database support.
- Removed Z.EntityFramework.Plus.EFCore dependency - now using custom implementations
- Added ExecuteUpdateAsync/ExecuteDeleteAsync extensions with DbContext parameter
- Added database-specific parameter formatting (Oracle :p0, SQL Server {p0}, PostgreSQL/MySQL/SQLite @p0)
- Improved SQL generation with SqlGenerationHelper for cross-database compatibility
- All bulk operations now use custom implementations without external dependencies
Version 3.0.0: Migrated to .NET Standard 2.0 with Microsoft.EntityFrameworkCore 3.1.20.
Removed OpenTelemetry dependency and Specification-based overloads for .NET Standard 2.0 compatibility.
Breaking change: Removed ISpecification-based method overloads, removed OpenTelemetry tracing.
All methods now use expression-based queries compatible with EF Core 3.1.20.
Version 9.3.1: Added AutoCommit parameter to DbTransactionScope for manual transaction control.
Version 9.3.0: Implemented transaction support with DbTransactionScope.