Releases: zzzprojects/EntityFramework-Plus
Releases · zzzprojects/EntityFramework-Plus
v1.4.7
v1.4.6
v1.4.5
v1.4.4
Download the library here
EF+ Audit
- FXED: Issue for retrieving audit with inheritance (TPC, TPH, and TPT)
EF+ Batch Delete
- FIXED: Issue with query with OrderBy
- FIXED: Issue with query with Take && Skip
EF+ Batch Update
- FIXED: Issue with query with OrderBy
- FIXED: Issue when contacting string with the keyword "from"
EF+ Query Cache
- ADDED: Support to Query IncludeFilter (Full version only)
- ADDED: Support to Query IncludeOptimized (Full version only)
- ADDED: CacheItemPolicyFactory to allow to set Absolute Time
EF+ Query IncludeOptimized
- FIXED: Issue with ICollection<> and IList<> for creating empty collection
v1.4.3
v1.4.2
Download the library here
_EF+ Query IncludeOptimized
- ADDED: IncludeOptimizedByPath to allow to specify a string path
- FIXED: Collection now return empty collection instead of null when no data is found (like Include method)
The AllowIncludeSubPath is currently in beta
QueryIncludeOptimizedManager.AllowIncludeSubPath = true;
Enabling this property allow to automatically include nested collection
By example
ctx.Lefts
.IncludeOptimized(x => x.Rights.SelectMany(y => y.Rights));
will be transformed into
ctx.Lefts
.IncludeOptimized(x => x.Rights);
.IncludeOptimized(x => x.Rights.SelectMany(y => y.Rights));
v1.4.1
v1.4.0
Download the library here
EF+ Audit
- ADDED: Default value for CreatedBy field
- ADDED: AuditEntryFactory && AuditEntryPropertyFactory for better customization
EF+ Query Filter (EF6)
- MAJOR REVAMP: All the code has been re-writing to use instead interceptor
- FIXED: Include method now filtered
- FIXED: Lazy loading now filtered