EntityFramework-Plus
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
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:  ``` string commandText = string.Empty; var x2...
## 1. Description When we try to update any column in Postgresql when TypeName = jsonb DocumentSignatureMethod is type Enum   ## 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]...