Struct ColumnInfo
One column of a result, its name, CLR type, and whether it may be null. The unit a mapping matches members against.
public struct ColumnInfo
- Inherited Members
- Extension Methods
Constructors
ColumnInfo(string, Type, bool)
One column of a result, its name, CLR type, and whether it may be null. The unit a mapping matches members against.
public ColumnInfo(string Name, Type Type, bool IsNullable)
Parameters
Fields
IsNullable
Indicates if the schema identifies this column as potentially containing null values.
public bool IsNullable
Field Value
Name
The name of the column as it appears in the result set.
public string Name
Field Value
Type
The C# type corresponding to the column data.
public Type Type