diff --git a/entity-framework/core/what-is-new/ef-core-10.0/whatsnew.md b/entity-framework/core/what-is-new/ef-core-10.0/whatsnew.md index 43996e7037..67b9ce80ad 100644 --- a/entity-framework/core/what-is-new/ef-core-10.0/whatsnew.md +++ b/entity-framework/core/what-is-new/ef-core-10.0/whatsnew.md @@ -304,7 +304,7 @@ CREATE TABLE [Customers] ( [Id] int NOT NULL IDENTITY, [Name] nvarchar(max) NOT NULL, [ShippingAddress] json NOT NULL, - [BillingAddress] json NOT NULL NULL, + [BillingAddress] json NOT NULL, CONSTRAINT [PK_Customers] PRIMARY KEY ([Id]) ); ```