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
### Description I have a model "Checklist" and "ChecklistQuestion" where 1 Checklist has many ChecklistQuestions. I am using EF Core and Oracle. I want to use IncludeFilter to filter ChecklistQuestions....
I have an object that maps to a database and it can have null properties. I don't know which properties are going to be null. How can I issue an...
Can you publish release news for version 2.0.7 Z.EntityFramework.Plus.EFCore package?
Does Entity Framework Plus support Batch Update with Join ? So for example a SQL Query like ```sql UPDATE a SET a.Status = 'A' FROM [User] a JOIN [UserGroup] b...
All the changes I did. Hopefully I did this pull request/forking right... I've never played with this part of Git Hub before.
When using "normal" EF 6 LINQ queries, one can obtain the SELECT SQL for them by either calling `ToString()` (without parameter values) or by getting the underlying object query (with...
### Description I am running a code connecting to AWS Aurora cluster, running a MySql engine v5.6.10a. This is how I set up a connection to the server: ```c# protected...
Edit: better explanation here: https://github.com/zzzprojects/EntityFramework-Plus/issues/405#issuecomment-418925410 Hi, On .net core 2.1 / EntityFrameworkPlus.EfCore 1.8.5, I noticed that some data was missing from collection properties in my return object when using a...
Hello, we switched from EntityFramework-Plus filter extension to EF Core `HasQueryFilter` because we started using views, but this again doesn't seem to work with batch delete: `System.Collections.Generic.KeyNotFoundException: The given key...
I noticed an interesting performance issue while trying to take advantage of `IncludeOptimized`. Contrary to my expectation, `IncludeOptimized` slows down my queries instead of speeding them up. My use case...