Releases: zzzprojects/EntityFramework-Effort
Releases · zzzprojects/EntityFramework-Effort
v2.2.17
v2.2.16
v2.2.15
v2.2.14
- 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
- MERGED: Added Ms Sql Server timestamp support. zzzprojects/nmemory#45
v2.2.12
v2.2.10
FIXED: Issue to start the identity field to minimum 1 when some negative ID has been inserted (same behavior as SQL Server)