MKS.Repository.EntityFrameworkCore 10.0.4

dotnet add package MKS.Repository.EntityFrameworkCore --version 10.0.4
                    
NuGet\Install-Package MKS.Repository.EntityFrameworkCore -Version 10.0.4
                    
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="MKS.Repository.EntityFrameworkCore" Version="10.0.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MKS.Repository.EntityFrameworkCore" Version="10.0.4" />
                    
Directory.Packages.props
<PackageReference Include="MKS.Repository.EntityFrameworkCore" />
                    
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 MKS.Repository.EntityFrameworkCore --version 10.0.4
                    
#r "nuget: MKS.Repository.EntityFrameworkCore, 10.0.4"
                    
#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 MKS.Repository.EntityFrameworkCore@10.0.4
                    
#: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=MKS.Repository.EntityFrameworkCore&version=10.0.4
                    
Install as a Cake Addin
#tool nuget:?package=MKS.Repository.EntityFrameworkCore&version=10.0.4
                    
Install as a Cake Tool

Entity Framework Core implementation of MKS Repository abstractions, providing concrete repository classes with full EF Core integration and performance optimizations.

Product Compatible and additional computed target framework versions.
.NET 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 (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 297 3/25/2026
10.0.3 268 3/18/2026
10.0.2 175 3/9/2026
10.0.1 139 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 308 11/11/2025
9.3.1 228 11/6/2025
9.3.0 216 11/5/2025
9.2.4 318 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
Loading failed

Version 9.4.0: Integrated OpenTelemetry distributed tracing across all repository operations.
      New: OpenTelemetryConfiguration class with ActivitySource names for tracing configuration.
      New: Comprehensive tracing for all repository operations (read, write, bulk, transactions).
      Added: Activity spans for DbTransactionScope commit/rollback/dispose operations with detailed metadata.
      Added: Tracing for DbContextResolver with cache hit/miss tracking.
      Enhanced: All operations now emit detailed telemetry data including entity types, operation names, result counts, and error information.
      Improved: Better observability for debugging and performance monitoring in distributed systems.
      Breaking: Added dependency on OpenTelemetry.Api (lightweight, no runtime impact if not configured).
      Version 9.3.1: Added AutoCommit parameter to DbTransactionScope for manual transaction control.
      Version 9.3.0: Implemented transaction support with DbTransactionScope.