Table of Contents

Struct ColumnInfo

Namespace
Rinku.Mapping
Assembly
Rinku.dll

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

Name string
Type Type
IsNullable bool

Fields

IsNullable

Indicates if the schema identifies this column as potentially containing null values.

public bool IsNullable

Field Value

bool

Name

The name of the column as it appears in the result set.

public string Name

Field Value

string

Type

The C# type corresponding to the column data.

public Type Type

Field Value

Type