Reacting to EF naming change

This commit is contained in:
ajcvickers 2014-10-28 18:51:30 -07:00
parent 556c15273e
commit 0bbd7c8b48
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ namespace Microsoft.AspNet.Identity.EntityFramework.Test
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<User<TKey>>().Property(p => p.Id)
.GenerateValuesOnAdd(generateValues: false);
.GenerateValueOnAdd(generateValue: false);
}
}