Generator.Nullable Property

Gets or sets a value that indicates whether this column can be set to NULL.

Namespace:  Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly:  Microsoft.VisualStudio.TeamSystem.Data (in Microsoft.VisualStudio.TeamSystem.Data.dll)

Syntax

'Declaration
<InputAttribute(AutoAssignedInput := AutoAssignedInput.Nullable, Visible := False)> _
Public Property Nullable As Boolean
'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);
}
public function get Nullable () : boolean
public function set Nullable (value : boolean)

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.

Permissions

See Also

Reference

Generator Class

Generator Members

Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace

GeneratorAttribute

GeneratorInit

IGenerator

Nullable

Other Resources

Creating Custom Data Generators

An Overview of Data Generator Extensibility

Specifying Details of Data Generation for a Column