diff --git a/test/Microsoft.AspNet.Diagnostics.Entity.FunctionalTests/TestModels/BloggingContextWithMigrations.cs b/test/Microsoft.AspNet.Diagnostics.Entity.FunctionalTests/TestModels/BloggingContextWithMigrations.cs index 018bbb3559..2490761d98 100644 --- a/test/Microsoft.AspNet.Diagnostics.Entity.FunctionalTests/TestModels/BloggingContextWithMigrations.cs +++ b/test/Microsoft.AspNet.Diagnostics.Entity.FunctionalTests/TestModels/BloggingContextWithMigrations.cs @@ -52,7 +52,7 @@ namespace Microsoft.AspNet.Diagnostics.Entity.Tests c => new { BlogId = c.Column().Annotation("SqlServer:ValueGenerationStrategy", SqlServerIdentityStrategy.IdentityColumn), - Name = c.Column(isNullable: true), + Name = c.Column(nullable: true), }) .PrimaryKey("PK_Blog", t => t.BlogId); }