Stop using GenerateValueOnAdd.

This commit is contained in:
Arthur Vickers 2015-06-17 11:54:48 -07:00
parent 9e547d5a9d
commit 7f63665607
1 changed files with 0 additions and 1 deletions

View File

@ -34,7 +34,6 @@ namespace Microsoft.AspNet.Diagnostics.Entity.Tests
builder.Entity("Blogging.Models.Blog", b =>
{
b.Property<int>("BlogId");
b.Property<int>("BlogId").GenerateValueOnAdd();
b.Property<string>("Name");
b.Key("BlogId");
});