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 125 EntityFramework-Plus issues
Sort by recently updated
recently updated
newest added

System.Exception: ERROR_005: The monthly trial period is expired (2022-08-01). You can extend your trial by downloading the latest version as the beginning of every month.

Hi, is any way how to use nlog for loggin query? Or is any way how to do it yourself? Thank you :)

### Description Hi, I have problems with the postgresql ltree data type. I would like to use `UpdateFromQueryAsync` to change the 'LTree' path, but that doesn't work `BulkInsertAsync` when adding...

After upgrading to .NET Core 6 (with EFCore 6 update + EntityFramework-plus), I'm now getting the following exception when using the Plus lib: System.InvalidCastException: Unable to cast object of type...

## 1. Description I would expect the following to work: ```c# var conversions = Context.Set() .WhereBulkContains(conversionIds); return (from conversionTradeMap in Context.Set() join c in conversions on conversionTradeMap.Conversion.Id equals c.Id select...

Hi, I just tested your library and I found 1 unwanted behavior. I'm using attributes **AuditInclude** over class and **AuditExclude** over property. In case when I change only property with...

I tried to use WhereBulkContains on a query on a Oracle database, yet when I run it an exception is generated stating the "UseBulkInsertToCopyTable option" is only available in Sql...

Hi, Came across your library through [this StackOverflow question](http://stackoverflow.com/questions/42422656/entity-framework-doesnt-provide-deleteasync-or-addasync-why). Please watch [this short MSDN video](https://channel9.msdn.com/Series/Three-Essential-Tips-for-Async/Async-Library-Methods-Shouldn-t-Lie) which explains why things like your implementation of `DeleteAsync` is misleading. ``` public static Task...

I ran into an issue where a batch delete became extremely slow because I'm deleting millions of records. My transaction log grew very big, causing the slowdown. After reproducing the...

### Description On simple update EntityFramework-Plus generate non-optimal sql request that leads to a deadlock problem example: ``` db.UserSession .Where(e => e.UserId == siteUserId && e.AuthSid != authSid) .Update(e =>...