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

Hi! We're using a licensed version of your extensions (really useful btw!), and we were trying to incorporate Projectables in conjunction with it. See https://github.com/koenbeuk/EntityFrameworkCore.Projectables So far, we couldn't do...

I would like to propose a addition to the Query Filter capability of EntityFramework-Plus library. This post is building upon examples in the docs: https://entityframework-plus.net/ef-core-query-filter Let's take the following example:...

Hi. Is not a issue, but i'd like to knows if zentityframework will support hybrid caching in .net 9, using methods FromCache/FromCacheAsync on IQuerable. Thanks

Hello, I'm experiencing performance issues when using UpdateAsync. The EXISTS clause is being included unnecessarily in the generated query, impacting performance. Example: ![image](https://github.com/user-attachments/assets/599bfeee-0f92-44e5-876a-7b5a3167e368) ``` string commandText = string.Empty; var x2...

## 1. Description When we try to update any column in Postgresql when TypeName = jsonb DocumentSignatureMethod is type Enum ![image](https://github.com/user-attachments/assets/e74a24f0-09c1-4c38-bd84-3cc4f4e82829) ![image](https://github.com/user-attachments/assets/4d69bcba-22d8-4632-b045-359c57f891ae) ## 2. Exception 'A PostgreSQL type with the...

### Feature request **Summary:** Add support for query-level SQL hints (such as OPTION clauses) that can be appended to generated queries, for example: `OPTION (RECOMPILE)`, `OPTION (MAXDOP 1)`. **Motivation:** Sometimes...

## Issue Description Batch operations (`Insert`, `Update`, `DeleteFromQuery`) fail to translate into SQL. This issue was first observed in EF Core version 5 and persists in EF Core 8 as...

Migrating EntityFramework.Extended library to a modern implementation and successor Z.EntityFramework.Plus.EF6 library, should be quite simple task. Changing few using directives, and changing some return parameters of methods for Future Queries,...

WithHint doesn't work with EF 7+ ExecuteUpdate and ExecuteDelete methods ```csharp await context.TableName.WithHint(SqlServerTableHintFlags.ROWLOCK, typeof(TableName)) .Where(x => x.Id = 1) .ExecuteUpdateAsync(x => x.SetProperty(y => y.Name, "User")); ``` Expected ```sql UPDATE [b]...