Skip to content

Releases: zzzprojects/EntityFramework-Effort

v2.2.17

17 Nov 16:33
Compare
Choose a tag to compare
  • FIXED: License URL in NuGet Package

v2.2.16

03 Feb 16:46
Compare
Choose a tag to compare
  • FIXED: Wrong File version in nuget of 3.1.3\lib\netstandard2.0\NMemory.dll - does not correspond to Product version #47

v2.2.15

05 Oct 22:42
Compare
Choose a tag to compare
  • FIXED: Object of type 'a' cannot be converted to type 'b' on Effort.Internal.Common.DatabaseReflectionHelper.InsertEntity #212

v2.2.14

23 Jul 14:42
Compare
Choose a tag to compare
  • ADDED: Expose IdentitySpecification so we can change the seed value #210
var connection = Effort.DbConnectionFactory.CreateTransient();

using (var context = new EntityContext(connection))
{
	context.Database.CreateIfNotExists();
	connection.Open();

	connection.DbManager.SetIdentity<EntitySimple>(50);
	connection.DbManager.SetIdentity<EntitySimple2>(100, 2);
}

v2.2.13

03 Mar 04:43
Compare
Choose a tag to compare

v2.2.12

11 Feb 15:56
Compare
Choose a tag to compare

IMPROVED: Performance for Insert when a new entity is created for: Nmemory update error with more 10000 items #44

v2.2.10

23 Mar 23:02
Compare
Choose a tag to compare

FIXED: Issue to start the identity field to minimum 1 when some negative ID has been inserted (same behavior as SQL Server)

v2.2.8

29 Jan 16:38
717f581
Compare
Choose a tag to compare

MERGED: Update EntityFramework to 6.3.0 #189

v2.2.7

20 Nov 17:02
Compare
Choose a tag to compare

FIXED: Binary AND not supported for bitmasks #191

v2.2.6

30 Oct 20:48
Compare
Choose a tag to compare

FIXED: CachedDataLoader fails with EntityDataLoader using ContextFactory #188