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);
}