共用方式為


AzureSqlDWTableDataset Constructors

Definition

Overloads

AzureSqlDWTableDataset()

Initializes a new instance of the AzureSqlDWTableDataset class.

AzureSqlDWTableDataset(LinkedServiceReference, IDictionary<String, Object>, String, Object, Object, IDictionary<String,ParameterSpecification>, IList<Object>, DatasetFolder, Object, Object, Object)

Initializes a new instance of the AzureSqlDWTableDataset class.

AzureSqlDWTableDataset()

Initializes a new instance of the AzureSqlDWTableDataset class.

public AzureSqlDWTableDataset ();
Public Sub New ()

Applies to

AzureSqlDWTableDataset(LinkedServiceReference, IDictionary<String, Object>, String, Object, Object, IDictionary<String,ParameterSpecification>, IList<Object>, DatasetFolder, Object, Object, Object)

Initializes a new instance of the AzureSqlDWTableDataset class.

public AzureSqlDWTableDataset (Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference linkedServiceName, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string description = default, object structure = default, object schema = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> parameters = default, System.Collections.Generic.IList<object> annotations = default, Microsoft.Azure.Management.DataFactory.Models.DatasetFolder folder = default, object tableName = default, object azureSqlDWTableDatasetSchema = default, object table = default);
new Microsoft.Azure.Management.DataFactory.Models.AzureSqlDWTableDataset : Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference * System.Collections.Generic.IDictionary<string, obj> * string * obj * obj * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> * System.Collections.Generic.IList<obj> * Microsoft.Azure.Management.DataFactory.Models.DatasetFolder * obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.AzureSqlDWTableDataset
Public Sub New (linkedServiceName As LinkedServiceReference, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional description As String = Nothing, Optional structure As Object = Nothing, Optional schema As Object = Nothing, Optional parameters As IDictionary(Of String, ParameterSpecification) = Nothing, Optional annotations As IList(Of Object) = Nothing, Optional folder As DatasetFolder = Nothing, Optional tableName As Object = Nothing, Optional azureSqlDWTableDatasetSchema As Object = Nothing, Optional table As Object = Nothing)

Parameters

linkedServiceName
LinkedServiceReference

Linked service reference.

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

description
String

Dataset description.

structure
Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

schema
Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

parameters
IDictionary<String,ParameterSpecification>

Parameters for dataset.

annotations
IList<Object>

List of tags that can be used for describing the Dataset.

folder
DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

tableName
Object

This property will be retired. Please consider using schema + table properties instead.

azureSqlDWTableDatasetSchema
Object

The schema name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).

table
Object

The table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).

Applies to