From 23b9e3d5c5986f74021924d2cb4e4f46e2698b88 Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Thu, 22 Jan 2026 19:14:01 +0100 Subject: [PATCH] Correct column nullability in 10.0 what's new page (#5250) 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]) ); ```