Show / Hide Table of Contents

    Class SyncFullSchemaTable

    Properties of the table in the database full schema.

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

    Constructors

    SyncFullSchemaTable()

    Initializes a new instance of the SyncFullSchemaTable class.

    Declaration
    public SyncFullSchemaTable ();

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

    Initializes a new instance of the SyncFullSchemaTable class.

    Declaration
    public SyncFullSchemaTable (System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.SyncFullSchemaTableColumn> columns = null, string errorId = null, Nullable<bool> hasError = null, string name = null, string quotedName = null);
    Parameters
    IList<SyncFullSchemaTableColumn> columns

    List of columns in the table of database full schema.

    String errorId

    Error id of the table.

    Nullable<Boolean> hasError

    If there is error in the table.

    String name

    Name of the table.

    String quotedName

    Quoted name of the table.

    Properties

    Columns

    Gets list of columns in the table of database full schema.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="columns")]
    public System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.SyncFullSchemaTableColumn> Columns { get; }
    Property Value
    IList<SyncFullSchemaTableColumn>

    ErrorId

    Gets error id of the table.

    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>

    Name

    Gets name of the table.

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

    QuotedName

    Gets quoted name of the table.

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

    Back to top Azure SDK for Net