Share via


SqlVector<T>.Null Property

Definition

Represents a null instance without any attributes.

public:
 static property Nullable<Microsoft::Data::SqlTypes::SqlVector<T>> Null { Nullable<Microsoft::Data::SqlTypes::SqlVector<T>> get(); };
public:
 static property Microsoft::Data::SqlTypes::SqlVector<T> Null { Microsoft::Data::SqlTypes::SqlVector<T> get(); };
public static Microsoft.Data.SqlTypes.SqlVector<T>? Null { get; }
public static Microsoft.Data.SqlTypes.SqlVector<T> Null { get; }
static member Null : Nullable<Microsoft.Data.SqlTypes.SqlVector<'T>>
static member Null : Microsoft.Data.SqlTypes.SqlVector<'T (requires 'T : struct)>
Public Shared ReadOnly Property Null As Nullable(Of SqlVector(Of T))
Public Shared ReadOnly Property Null As SqlVector(Of T)

Property Value

Remarks

This property is provided for compatibility with DataTable. In most cases, prefer using IsNull to check if a SqlVector instance is a null vector. This is equivalent to null value.

Applies to