iPlus.EntityFrameworkCore.Proxies 10.0.0-dev

This is a prerelease version of iPlus.EntityFrameworkCore.Proxies.

Requires NuGet 3.6 or higher.

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

The Microsoft.EntityFrameworkCore.Proxies package contains implementations of dynamic proxies for lazy-loading and/or change-tracking.

Usage

Call UseLazyLoadingProxies when configuring your DbContext to enable lazy-loading proxies. For example:

protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
    => optionsBuilder.UseLazyLoadingProxies();

Call UseChangeTrackingProxies when configuring your DbContext to enable change-tracking proxies. For example:

protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
    => optionsBuilder.UseChangeTrackingProxies();

Call both methods for proxies that implement both lazy-loading and change-tracking. For example:

protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
    => optionsBuilder
        .UseLazyLoadingProxies()
        .UseChangeTrackingProxies();

Getting started with EF Core

See Getting started with EF Core for more information about EF NuGet packages, including which to install when getting started.

Feedback

If you encounter a bug or issues with this package,you can open an Github issue. For more details, see getting support.

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 iPlus.EntityFrameworkCore.Proxies:

Package Downloads
iPlus.EntityFrameworkCore.Specification.Tests

iPlus Fork of ef core main repository

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.0-dev 41 3/5/2026
9.0.7 86 3/5/2026