Share via


DatabaseLoaderCatalog.CreateDatabaseLoader Method

Definition

Overloads

CreateDatabaseLoader(DataOperationsCatalog, DatabaseLoader+Column[])

Create a database loader DatabaseLoader.

CreateDatabaseLoader(DataOperationsCatalog, DatabaseLoader+Options)

Create a database loader DatabaseLoader.

CreateDatabaseLoader<TInput>(DataOperationsCatalog)

Create a database loader DatabaseLoader.

CreateDatabaseLoader(DataOperationsCatalog, DatabaseLoader+Column[])

Create a database loader DatabaseLoader.

public static Microsoft.ML.Data.DatabaseLoader CreateDatabaseLoader (this Microsoft.ML.DataOperationsCatalog catalog, params Microsoft.ML.Data.DatabaseLoader.Column[] columns);
static member CreateDatabaseLoader : Microsoft.ML.DataOperationsCatalog * Microsoft.ML.Data.DatabaseLoader.Column[] -> Microsoft.ML.Data.DatabaseLoader
<Extension()>
Public Function CreateDatabaseLoader (catalog As DataOperationsCatalog, ParamArray columns As DatabaseLoader.Column()) As DatabaseLoader

Parameters

columns
DatabaseLoader.Column[]

Array of columns DatabaseLoader.Column defining the schema.

Returns

Applies to

CreateDatabaseLoader(DataOperationsCatalog, DatabaseLoader+Options)

Create a database loader DatabaseLoader.

public static Microsoft.ML.Data.DatabaseLoader CreateDatabaseLoader (this Microsoft.ML.DataOperationsCatalog catalog, Microsoft.ML.Data.DatabaseLoader.Options options);
static member CreateDatabaseLoader : Microsoft.ML.DataOperationsCatalog * Microsoft.ML.Data.DatabaseLoader.Options -> Microsoft.ML.Data.DatabaseLoader
<Extension()>
Public Function CreateDatabaseLoader (catalog As DataOperationsCatalog, options As DatabaseLoader.Options) As DatabaseLoader

Parameters

options
DatabaseLoader.Options

Defines the settings of the load operation.

Returns

Applies to

CreateDatabaseLoader<TInput>(DataOperationsCatalog)

Create a database loader DatabaseLoader.

public static Microsoft.ML.Data.DatabaseLoader CreateDatabaseLoader<TInput> (this Microsoft.ML.DataOperationsCatalog catalog);
static member CreateDatabaseLoader : Microsoft.ML.DataOperationsCatalog -> Microsoft.ML.Data.DatabaseLoader
<Extension()>
Public Function CreateDatabaseLoader(Of TInput) (catalog As DataOperationsCatalog) As DatabaseLoader

Type Parameters

TInput

Defines the schema of the data to be loaded. Use public fields or properties decorated with LoadColumnAttribute (and possibly other attributes) to specify the column names and their data types in the schema of the loaded data.

Parameters

Returns

Applies to