Show / Hide Table of Contents

    Class SyncFullSchemaTableColumn

    Properties of the column in the table of database full schema.

    Inheritance
    Object
    SyncFullSchemaTableColumn
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Sql.dll
    Syntax
    public class SyncFullSchemaTableColumn

    Constructors

    SyncFullSchemaTableColumn()

    Initializes a new instance of the SyncFullSchemaTableColumn class.

    Declaration
    public SyncFullSchemaTableColumn ();

    SyncFullSchemaTableColumn(String, String, String, Nullable<Boolean>, Nullable<Boolean>, String, String)

    Initializes a new instance of the SyncFullSchemaTableColumn class.

    Declaration
    public SyncFullSchemaTableColumn (string dataSize = null, string dataType = null, string errorId = null, Nullable<bool> hasError = null, Nullable<bool> isPrimaryKey = null, string name = null, string quotedName = null);
    Parameters
    String dataSize

    Data size of the column.

    String dataType

    Data type of the column.

    String errorId

    Error id of the column.

    Nullable<Boolean> hasError

    If there is error in the table.

    Nullable<Boolean> isPrimaryKey

    If it is the primary key of the table.

    String name

    Name of the column.

    String quotedName

    Quoted name of the column.

    Properties

    DataSize

    Gets data size of the column.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="dataSize")]
    public string DataSize { get; }
    Property Value
    String

    DataType

    Gets data type of the column.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="dataType")]
    public string DataType { get; }
    Property Value
    String

    ErrorId

    Gets error id of the column.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="errorId")]
    public string ErrorId { get; }
    Property Value
    String

    HasError

    Gets if there is error in the table.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="hasError")]
    public Nullable<bool> HasError { get; }
    Property Value
    Nullable<Boolean>

    IsPrimaryKey

    Gets if it is the primary key of the table.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="isPrimaryKey")]
    public Nullable<bool> IsPrimaryKey { get; }
    Property Value
    Nullable<Boolean>

    Name

    Gets name of the column.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="name")]
    public string Name { get; }
    Property Value
    String

    QuotedName

    Gets quoted name of the column.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="quotedName")]
    public string QuotedName { get; }
    Property Value
    String

    Back to top Azure SDK for Net