C# 클래스 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.
파일 보기 프로젝트 열기: re-motion/Relinq-SqlBackend 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
ColumnName string
Position int

공개 메소드들

메소드 설명
ColumnID ( string columnName, int position ) : System
ToString ( ) : string

메소드 상세

ColumnID() 공개 메소드

public ColumnID ( string columnName, int position ) : System
columnName string
position int
리턴 System

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

프로퍼티 상세

ColumnName 공개적으로 프로퍼티

public string ColumnName
리턴 string

Position 공개적으로 프로퍼티

public int Position
리턴 int