diff --git a/src/Microsoft.Data.SqlClient/netcore/ref/Microsoft.Data.SqlClient.cs b/src/Microsoft.Data.SqlClient/netcore/ref/Microsoft.Data.SqlClient.cs index 3e26aa251a..a07133eb07 100644 --- a/src/Microsoft.Data.SqlClient/netcore/ref/Microsoft.Data.SqlClient.cs +++ b/src/Microsoft.Data.SqlClient/netcore/ref/Microsoft.Data.SqlClient.cs @@ -131,7 +131,7 @@ public SqlVector(System.ReadOnlyMemory memory) { } /// public bool IsNull => throw null; /// - public static SqlVector Null => throw null; + public static SqlVector? Null => throw null; /// public int Length { get { throw null; } } /// diff --git a/src/Microsoft.Data.SqlClient/netfx/ref/Microsoft.Data.SqlClient.cs b/src/Microsoft.Data.SqlClient/netfx/ref/Microsoft.Data.SqlClient.cs index a3bb3b46c2..636c39c932 100644 --- a/src/Microsoft.Data.SqlClient/netfx/ref/Microsoft.Data.SqlClient.cs +++ b/src/Microsoft.Data.SqlClient/netfx/ref/Microsoft.Data.SqlClient.cs @@ -2425,7 +2425,7 @@ public SqlVector(System.ReadOnlyMemory memory) { } /// public bool IsNull => throw null; /// - public static SqlVector Null => throw null; + public static SqlVector? Null => throw null; /// public int Length { get { throw null; } } ///