Share via


DatabaseLoader.Range Constructors

Definition

Overloads

DatabaseLoader.Range()
DatabaseLoader.Range(Int32)

A range representing a single value. Will result in a scalar column.

DatabaseLoader.Range(String)

A range representing a single value. Will result in a scalar column.

DatabaseLoader.Range(Int32, Int32)

A range representing a set of values. Will result in a vector column.

DatabaseLoader.Range()

public Range ();
Public Sub New ()

Applies to

DatabaseLoader.Range(Int32)

A range representing a single value. Will result in a scalar column.

public Range (int index);
new Microsoft.ML.Data.DatabaseLoader.Range : int -> Microsoft.ML.Data.DatabaseLoader.Range
Public Sub New (index As Integer)

Parameters

index
Int32

The index of the field of the table to read.

Applies to

DatabaseLoader.Range(String)

A range representing a single value. Will result in a scalar column.

public Range (string name);
new Microsoft.ML.Data.DatabaseLoader.Range : string -> Microsoft.ML.Data.DatabaseLoader.Range
Public Sub New (name As String)

Parameters

name
String

The name of the field of the table to read.

Applies to

DatabaseLoader.Range(Int32, Int32)

A range representing a set of values. Will result in a vector column.

public Range (int min, int max);
new Microsoft.ML.Data.DatabaseLoader.Range : int * int -> Microsoft.ML.Data.DatabaseLoader.Range
Public Sub New (min As Integer, max As Integer)

Parameters

min
Int32

The minimum inclusive index of the column.

max
Int32

The maximum-inclusive index of the column.

Applies to