C# Class Remotion.Linq.SqlBackend.SqlGeneration.ColumnID

Represents a column in the SQL result returned by a LINQ query. The in-memory projections generated by re-linq use this as a parameter to the methods of IDatabaseResultRow when they need to retrieve a value from a result row. Each column is identified both by its ColumnName and its Position. The implementer of IDatabaseResultRow is free to choose which identifier to use when retrieving a value from a result row.
Exibir arquivo Open project: re-motion/Relinq-SqlBackend Class Usage Examples

Public Properties

Property Type Description
ColumnName string
Position int

Public Methods

Method Description
ColumnID ( string columnName, int position ) : System
ToString ( ) : string

Method Details

ColumnID() public method

public ColumnID ( string columnName, int position ) : System
columnName string
position int
return System

ToString() public method

public ToString ( ) : string
return string

Property Details

ColumnName public_oe property

public string ColumnName
return string

Position public_oe property

public int Position
return int