React to EF fluent API changes

This commit is contained in:
Arthur Vickers 2015-09-24 10:38:13 -07:00
parent 7948533fab
commit 062d072712
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ namespace Microsoft.AspNet.Diagnostics.Entity.Tests
{ {
b.Property<int>("BlogId"); b.Property<int>("BlogId");
b.Property<string>("Name"); b.Property<string>("Name");
b.Key("BlogId"); b.HasKey("BlogId");
}); });
} }
} }