C# Класс MicroLite.Builder.SqlBuilderBase

Наследование: IToSqlQuery
Показать файл Открыть проект

Открытые методы

Метод Описание
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