Microsoft.EntityFrameworkCore.Proxies 9.0.0-preview.3.24172.4

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.

No packages depend on Microsoft.EntityFrameworkCore.Proxies.

.NET 8.0

Version Downloads Last updated
9.0.0-preview.3.24172.4 17 2024/5/10
7.0.18 13 2024/4/19
7.0.13 12 2023/11/13
7.0.12 11 2023/10/17
7.0.11 11 2023/10/4
7.0.10 11 2023/8/15
7.0.9 11 2023/7/12
7.0.8 11 2023/7/11
7.0.2 10 2023/2/2
7.0.1 10 2023/6/8
7.0.0 10 2023/11/23
6.0.22 11 2023/9/25
6.0.21 12 2023/8/23
6.0.13 12 2023/2/2
6.0.5 13 2022/11/7
5.0.17 15 2022/12/3
5.0.16 11 2022/4/16