C# 클래스 MicroLite.Builder.SqlBuilderBase

상속: IToSqlQuery
파일 보기 프로젝트 열기: TrevorPilley/MicroLite

공개 메소드들

메소드 설명
ToSqlQuery ( ) : SqlQuery

Creates a SqlQuery from the values specified.

This method is called to return an SqlQuery once query has been defined.

보호된 메소드들

메소드 설명
AddBetween ( object lower, object upper, bool negate ) : void
AddIn ( SqlQuery subQuery, bool negate ) : void
AddIn ( object args, bool negate ) : void
AddLike ( object comparisonValue, bool negate ) : void
AddWithComparisonOperator ( object comparisonValue, string comparisonOperator ) : void
AppendTableName ( IObjectInfo objectInfo ) : void

Appends the table name to the inner sql.

AppendTableName ( string table ) : void

Appends the table name to the inner sql.

SqlBuilderBase ( SqlCharacters sqlCharacters ) : System

Initialises a new instance of the SqlBuilderBase class.

메소드 상세

AddBetween() 보호된 메소드

protected AddBetween ( object lower, object upper, bool negate ) : void
lower object
upper object
negate bool
리턴 void

AddIn() 보호된 메소드

protected AddIn ( SqlQuery subQuery, bool negate ) : void
subQuery SqlQuery
negate bool
리턴 void

AddIn() 보호된 메소드

protected AddIn ( object args, bool negate ) : void
args object
negate bool
리턴 void

AddLike() 보호된 메소드

protected AddLike ( object comparisonValue, bool negate ) : void
comparisonValue object
negate bool
리턴 void

AddWithComparisonOperator() 보호된 메소드

protected AddWithComparisonOperator ( object comparisonValue, string comparisonOperator ) : void
comparisonValue object
comparisonOperator string
리턴 void

AppendTableName() 보호된 메소드

Appends the table name to the inner sql.
protected AppendTableName ( IObjectInfo objectInfo ) : void
objectInfo IObjectInfo The object information.
리턴 void

AppendTableName() 보호된 메소드

Appends the table name to the inner sql.
protected AppendTableName ( string table ) : void
table string The name of the table.
리턴 void

SqlBuilderBase() 보호된 메소드

Initialises a new instance of the SqlBuilderBase class.
protected SqlBuilderBase ( SqlCharacters sqlCharacters ) : System
sqlCharacters MicroLite.Characters.SqlCharacters The SQL characters for the builder.
리턴 System

ToSqlQuery() 공개 메소드

Creates a SqlQuery from the values specified.
This method is called to return an SqlQuery once query has been defined.
public ToSqlQuery ( ) : SqlQuery
리턴 SqlQuery