Share via


Generator.Nullable Property

Gets or sets a value that indicates whether this column can be set to nulla null reference (Nothing in Visual Basic).

Namespace:  Microsoft.Data.Schema.DataGenerator
Assembly:  Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)

Syntax

'Declaration
<InputAttribute(AutoAssignedInput := AutoAssignedInput.Nullable, Visible := False)> _
Public Property Nullable As Boolean
    Get
    Set
'Usage
Dim instance As Generator
Dim value As Boolean

value = instance.Nullable

instance.Nullable = value
[InputAttribute(AutoAssignedInput = AutoAssignedInput.Nullable, Visible = false)]
public bool Nullable { get; set; }
[InputAttribute(AutoAssignedInput = AutoAssignedInput::Nullable, Visible = false)]
public:
property bool Nullable {
    bool get ();
    void set (bool value);
}
function get Nullable () : boolean
function set Nullable (value : boolean)
[<InputAttribute(AutoAssignedInput = AutoAssignedInput.Nullable, Visible = false)>]
member Nullable : bool with get, set

Property Value

Type: System.Boolean
true if this column can be set to nulla null reference (Nothing in Visual Basic); otherwise, false.

Remarks

This property is decorated with the InputAttribute and the AutoAssignedInput named parameter.

.NET Framework Security

See Also

Reference

Generator Class

Generator Members

Microsoft.Data.Schema.DataGenerator Namespace