C# 클래스 MicroLite.SqlString

A class which contains the clauses of a SQL command.
파일 보기 프로젝트 열기: TrevorPilley/MicroLite 1 사용 예제들

공개 메소드들

메소드 설명
Parse ( string commandText, Clauses clauses ) : SqlString

Parses the specified command text into a SqlString instance populating the specified Clauses if present in the command text.

비공개 메소드들

메소드 설명
AppendFrom ( string commandText, Clauses clauses, SegmentPositions segmentPositions ) : SqlString
AppendGroupBy ( string commandText, Clauses clauses, SegmentPositions segmentPositions ) : SqlString
AppendOrderBy ( string commandText, Clauses clauses, SegmentPositions segmentPositions ) : SqlString
AppendSelect ( string commandText, Clauses clauses, SegmentPositions segmentPositions ) : SqlString
AppendWhere ( string commandText, Clauses clauses, SegmentPositions segmentPositions ) : SqlString
SqlString ( ) : System

메소드 상세

Parse() 공개 정적인 메소드

Parses the specified command text into a SqlString instance populating the specified Clauses if present in the command text.
public static Parse ( string commandText, Clauses clauses ) : SqlString
commandText string The SQL command text.
clauses Clauses The clauses to include in the SqlString.
리턴 SqlString