EntityFramework-Plus icon indicating copy to clipboard operation
EntityFramework-Plus copied to clipboard

Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more

Results 129 EntityFramework-Plus issues
Sort by recently updated
recently updated
newest added

Noticed some issues while running concurrent tests against a context- the original dictionary implementation wasn't doing well with concurrent reads. This flips to concurrent data types for less issues/explicit locks.

Hello In our project, we using EF core (Version 5.0.0-rc.2.20475.17). When I try to get the inner collection by ``` players.Include(p=>p.Interests).ToList(); ``` It works and all player entities include "Interests"...

### Description I am unable retrieve audit entries for a generic type using the ```Where()``` extension method. ### Exception ``` System.Exception Unhandled exception. System.Exception: Oops! The number of argument for...

Code to reproduce ``` using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Threading.Tasks; using Z.EntityFramework.Plus; namespace ConsoleApp1 { public class Selection { public int Id { get; set; } public int...

### Description Hello After migrating solution from .NET Core 2.2 to 3.1, my EF queries started throwing exceptions. The problem occurs when I use IncludeFilter syntax. I attached project in...

Because of this [type check](https://github.com/dotnet/efcore/blob/b8bdb212dadb53c7aa39209b256e5651d1b60aa5/src/EFCore/Extensions/EntityFrameworkQueryableExtensions.cs#L2941) `source.Provider is EntityQueryProvider`, all of the below methods does not work on EFPlus custom providers. - `TagWith` - `Include` - `ThenInclude` - `IgnoreAutoIncludes` - `IgnoreQueryFilters`...

### Description We derived from the DevArt OracleConnection to add some functionality. However EF+ batch functions without a table name specified, are throwing exceptions. That is because the EntityContainerEntitySet.GetDestinationTableName function...

### Description ``` var projects = dbContext.Projects .IncludeOptimized(x => x.Sites) .FromCache("projects"); //schematic model: class Projects { List Sites; } class Site { Guid SiteID; Guid ProjectID; Project Project; } ```...

Thank you for creating this library, Please add support for ThenIncludeFilter for EF core.