共用方式為


USqlTableFragment Constructors

Definition

Overloads

USqlTableFragment()

Initializes a new instance of the USqlTableFragment class.

USqlTableFragment(Nullable<Guid>, Nullable<Guid>, Nullable<Int32>, Nullable<Int64>, Nullable<Int64>, Nullable<DateTimeOffset>, String)

Initializes a new instance of the USqlTableFragment class.

USqlTableFragment()

Initializes a new instance of the USqlTableFragment class.

public USqlTableFragment ();
Public Sub New ()

Applies to

USqlTableFragment(Nullable<Guid>, Nullable<Guid>, Nullable<Int32>, Nullable<Int64>, Nullable<Int64>, Nullable<DateTimeOffset>, String)

Initializes a new instance of the USqlTableFragment class.

public USqlTableFragment (Guid? parentId = default, Guid? fragmentId = default, int? indexId = default, long? size = default, long? rowCount = default, DateTimeOffset? createDate = default, string streamPath = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.USqlTableFragment : Nullable<Guid> * Nullable<Guid> * Nullable<int> * Nullable<int64> * Nullable<int64> * Nullable<DateTimeOffset> * string -> Microsoft.Azure.Management.DataLake.Analytics.Models.USqlTableFragment
Public Sub New (Optional parentId As Nullable(Of Guid) = Nothing, Optional fragmentId As Nullable(Of Guid) = Nothing, Optional indexId As Nullable(Of Integer) = Nothing, Optional size As Nullable(Of Long) = Nothing, Optional rowCount As Nullable(Of Long) = Nothing, Optional createDate As Nullable(Of DateTimeOffset) = Nothing, Optional streamPath As String = Nothing)

Parameters

parentId
Nullable<Guid>

the parent object Id of the table fragment. The parent could be a table or table partition.

fragmentId
Nullable<Guid>

the version of the catalog item.

indexId
Nullable<Int32>

the ordinal of the index which contains the table fragment.

size
Nullable<Int64>

the data size of the table fragment in bytes.

rowCount
Nullable<Int64>

the number of rows in the table fragment.

createDate
Nullable<DateTimeOffset>

the creation time of the table fragment.

streamPath
String

the relative path for the table fragment location.

Applies to