Свойство IsNullable

Gets or sets a value that indicates whether the data type accepts null values.

Пространство имен:  Microsoft.SqlServer.Management.SqlParser.Metadata
Сборка:  Microsoft.SqlServer.Management.SqlParser (в Microsoft.SqlServer.Management.SqlParser.dll)

Синтаксис

'Декларация
Property IsNullable As Boolean
    Get
    Set
'Применение
Dim instance As IMutableClrDataType
Dim value As Boolean

value = instance.IsNullable

instance.IsNullable = value
bool IsNullable { get; set; }
property bool IsNullable {
    bool get ();
    void set (bool value);
}
abstract IsNullable : bool with get, set
function get IsNullable () : boolean
function set IsNullable (value : boolean)

Значение свойства

Тип: System. . :: . .Boolean
true if the data type accepts null values; otherwise, false.

Реализует

IClrDataType. . :: . .IsNullable