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 67b9ce80ad..f91b34e65d 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, + [BillingAddress] json NULL, CONSTRAINT [PK_Customers] PRIMARY KEY ([Id]) ); ```