Generator.TableName Property

Gets or sets the name of the table to which the column belongs.

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

Syntax

'Declaration
<InputAttribute(AutoAssignedInput := AutoAssignedInput.TableName, ReadOnly := True,  _
    Visible := False)> _
Public Property TableName As String
'Usage
Dim instance As Generator
Dim value As String

value = instance.TableName

instance.TableName = value
[InputAttribute(AutoAssignedInput = AutoAssignedInput.TableName, ReadOnly = true, 
    Visible = false)]
public string TableName { get; set; }
[InputAttribute(AutoAssignedInput = AutoAssignedInput::TableName, ReadOnly = true, 
    Visible = false)]
public:
property String^ TableName {
    String^ get ();
    void set (String^ value);
}
public function get TableName () : String
public function set TableName (value : String)

Property Value

Type: System.String
A string that contains the name of the table.

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

TableName

Other Resources

Creating Custom Data Generators

An Overview of Data Generator Extensibility

Specifying Details of Data Generation for a Column