MKS.Repository.EntityFrameworkCore 3.1.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package MKS.Repository.EntityFrameworkCore --version 3.1.4
                    
NuGet\Install-Package MKS.Repository.EntityFrameworkCore -Version 3.1.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="3.1.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MKS.Repository.EntityFrameworkCore" Version="3.1.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 3.1.4
                    
#r "nuget: MKS.Repository.EntityFrameworkCore, 3.1.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@3.1.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=3.1.4
                    
Install as a Cake Addin
#tool nuget:?package=MKS.Repository.EntityFrameworkCore&version=3.1.4
                    
Install as a Cake Tool

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

Product 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. 
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 302 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 329 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 3.1.4: Fixed parameter evaluation in UpdateFromQueryCommand for closure variables.
      - Fixed issue where closure variables (e.g., test.Name) were not properly evaluated, causing SQL parameters to contain expression strings instead of actual values
      - Enhanced EvaluateExpression to properly handle lambda expressions with closure variables
      - Improved IsConstantOrIndependentExpression to correctly identify closure values
      - Added EvaluateConstantExpression method to evaluate closure values before creating SetProperty calls
      Version 3.1.3: Enhanced ValueConverter support for enum conversions with Description attributes.
      - Fixed double conversion for enum types: String enum names (e.g., "New") are now correctly converted to Description format (e.g., "NEW")
      - Added support for nullable enum conversions with proper null handling
      - Improved conversion logic to handle Int32, String, and Enum value types correctly
      - Removed debug logging for production-ready code
      Version 3.1.2: Fixed ValueConverter support in ExecuteUpdate and ExecuteDelete methods.
      - ExecuteUpdate and ExecuteDelete now properly apply ValueConverter configured via HasConversion
      - Values are correctly converted from CLR type to database provider type before SQL execution
      - Fixes issues with enum-to-string, DateTime-to-long, and other custom value conversions
      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.