From b85f2bf5ea4c41c39f317400dd16603017ced93a Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Tue, 20 Jan 2026 12:47:10 +0100 Subject: [PATCH] Correct column nullability in 10.0 what's new page See #5247 --- entity-framework/core/what-is-new/ef-core-10.0/whatsnew.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]) ); ```