Skip to content

Releases: zzzprojects/EntityFramework-Plus

v1.4.44

11 Apr 20:26

Choose a tag to compare

Download the library here

Query Filter

  • FIXED: The fix done in the release v1.4.39 broke this feature. The filter was not longer working correctly the first time the context was loaded (Issue #155)

v1.4.43

11 Apr 19:42

Choose a tag to compare

Download the library here

Query IncludeFilter

  • FIXED: IncludeFilter is now ignored when executing immediate method "All", "Any", "Average", "Contains", "Count", "LongCount", "Max", "Min", "SequenceEqual", "Sum" (Issue #152)

Query IncludeOptimized

  • FIXED: IncludeFilterOptimized is now ignored when executing immediate method "All", "Any", "Average", "Contains", "Count", "LongCount", "Max", "Min", "SequenceEqual", "Sum" (Issue #152)

v1.4.42

09 Apr 15:34

Choose a tag to compare

Download the library here

BatchUpdate (EF Core)

  • FIXED: We believe the v1.4.41 release was not released correctly for the issue #149

Query IncludeFilter

  • FIXED: IncludeFilter is now ignored when executing immediate method "All", "Any", "Count", "LongCount" (Issue #152)

Query IncludeOptimized

  • FIXED: IncludeFilterOptimized is now ignored when executing immediate method "All", "Any", "Count", "LongCount" (Issue #152)

v1.4.41

08 Apr 18:02

Choose a tag to compare

Download the library here

BatchUpdate (EF Core)

  • ADDED: Support to InMemory (Issue #149)
BatchUpdateManager.InMemoryDbContextFactory = () => new MyContext(db.Options);

int value = 24234;
_context.Foos.Where(x => x.ColumnInt < 10).Update(foo => new Foo {Name = foo.Name + "2", T2 = value } );

v1.4.40

08 Apr 14:56

Choose a tag to compare

Download the library here

Audit

  • ADDED: FormatType options (Issue #140)
AuditManager.DefaultConfiguration.FormatType<DateTime>(x => x.ToString("yyyy-MM-dd"));

v1.4.39

06 Apr 18:42

Choose a tag to compare

Download the library here

Query Filter

  • FIXED: Performance issue caused by a missing line. For every filter, a new Filter ID value was set (Issue #148)

v1.4.38

05 Apr 19:57

Choose a tag to compare

Download the library here

Query Cache

  • FIXED: Issue when the second query was not using the cache (Issue #146)

This issue was caused when a password was used in the connection string without Persist Security Info=true

v1.4.37

01 Apr 23:27

Choose a tag to compare

Download the library here

Batch Update

  • FIXED: Issue when a query generated a "Filter" alias

Query IncludeOptimized

  • FIXED: Issue with Order By applied on scalar value

v1.4.35

13 Mar 02:40

Choose a tag to compare

Download the library here

  • ADDED: Support to scenario with multiple models for the same context

_If you receive an issue for methods such as Batch Delete and Batch Update when reading the model, contact us immediately: [email protected]

v1.4.34

11 Mar 13:29

Choose a tag to compare

Download the library here

Batch Update

  • FIXED: Issue when calling multiples Select or SelectMany before performing the update