Example #1
0
 /// <summary>
 /// Initializes a new instance of the USqlTablePartition class.
 /// </summary>
 /// <param name="computeAccountName">the name of the Data Lake
 /// Analytics account.</param>
 /// <param name="version">the version of the catalog item.</param>
 /// <param name="databaseName">the name of the database.</param>
 /// <param name="schemaName">the name of the schema associated with
 /// this table partition and database.</param>
 /// <param name="name">the name of the table partition.</param>
 /// <param name="parentName">the Ddl object of the partition's
 /// parent.</param>
 /// <param name="indexId">the index ID for this partition.</param>
 /// <param name="label">the list of labels associated with this
 /// partition.</param>
 /// <param name="createDate">the creation time of the partition</param>
 public USqlTablePartition(string computeAccountName = default(string), Guid?version = default(Guid?), string databaseName = default(string), string schemaName = default(string), string name = default(string), DdlName parentName = default(DdlName), int?indexId = default(int?), IList <string> label = default(IList <string>), DateTimeOffset?createDate = default(DateTimeOffset?))
     : base(computeAccountName, version)
 {
     DatabaseName = databaseName;
     SchemaName   = schemaName;
     Name         = name;
     ParentName   = parentName;
     IndexId      = indexId;
     Label        = label;
     CreateDate   = createDate;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the EntityId class.
 /// </summary>
 /// <param name="name">the name of the external table associated with
 /// this database, schema and table.</param>
 /// <param name="version">the version of the external data
 /// source.</param>
 public EntityId(DdlName name = default(DdlName), System.Guid?version = default(System.Guid?))
 {
     Name    = name;
     Version = version;
     CustomInit();
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the EntityId class.
 /// </summary>
 /// <param name="name">the name of the external table associated with
 /// this database, schema and table.</param>
 /// <param name="version">the version of the external data
 /// source.</param>
 public EntityId(DdlName name = default(DdlName), Guid?version = default(Guid?))
 {
     Name    = name;
     Version = version;
 }