LoadColumnNameAttribute Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
LoadColumnNameAttribute(String) |
Maps member to specific field in database. |
LoadColumnNameAttribute(String[]) |
Maps member to set of fields in database. |
LoadColumnNameAttribute(String)
Maps member to specific field in database.
public LoadColumnNameAttribute (string fieldName);
new Microsoft.ML.Data.LoadColumnNameAttribute : string -> Microsoft.ML.Data.LoadColumnNameAttribute
Public Sub New (fieldName As String)
Parameters
- fieldName
- String
The name of the field in the database.
Applies to
LoadColumnNameAttribute(String[])
Maps member to set of fields in database.
public LoadColumnNameAttribute (params string[] fieldNames);
new Microsoft.ML.Data.LoadColumnNameAttribute : string[] -> Microsoft.ML.Data.LoadColumnNameAttribute
Public Sub New (ParamArray fieldNames As String())
Parameters
- fieldNames
- String[]
Distinct database field names to load as part of this column.