From 6afe357271a3ada5cc2e16a08a9b991ec7078080 Mon Sep 17 00:00:00 2001 From: Arthur Vickers Date: Thu, 24 Sep 2015 11:08:41 -0700 Subject: [PATCH] Strategy rename --- .../TestModels/BloggingContextWithMigrations.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNet.Diagnostics.Entity.FunctionalTests/TestModels/BloggingContextWithMigrations.cs b/test/Microsoft.AspNet.Diagnostics.Entity.FunctionalTests/TestModels/BloggingContextWithMigrations.cs index 81a869efb3..d340179788 100644 --- a/test/Microsoft.AspNet.Diagnostics.Entity.FunctionalTests/TestModels/BloggingContextWithMigrations.cs +++ b/test/Microsoft.AspNet.Diagnostics.Entity.FunctionalTests/TestModels/BloggingContextWithMigrations.cs @@ -50,7 +50,7 @@ namespace Microsoft.AspNet.Diagnostics.Entity.Tests migrationBuilder.CreateTable("Blog", c => new { - BlogId = c.Column().Annotation("SqlServer:ValueGenerationStrategy", SqlServerIdentityStrategy.IdentityColumn), + BlogId = c.Column().Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn), Name = c.Column(nullable: true), }) .PrimaryKey("PK_Blog", t => t.BlogId);