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

Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Append ( string predicate ) : RawWhereBuilder

Appends the specified predicate (the WHERE keyword will be set when calling ApplyTo so it doesn't need specifying in the predicate).

Append ( string predicate, object arg ) : RawWhereBuilder

Appends the specified predicate (the WHERE keyword will be set when calling ApplyTo so it doesn't need specifying in the predicate).

ApplyTo ( IWhereOrOrderBy selectFrom ) : IAndOrOrderBy

Applies the predicate defined in this predicate builder to the result of SqlBuilder.Select().From().

ToString ( ) : string

Returns a System.String that represents this instance.

Описание методов

Append() публичный Метод

Appends the specified predicate (the WHERE keyword will be set when calling ApplyTo so it doesn't need specifying in the predicate).
public Append ( string predicate ) : RawWhereBuilder
predicate string The predicate to be appended.
Результат RawWhereBuilder

Append() публичный Метод

Appends the specified predicate (the WHERE keyword will be set when calling ApplyTo so it doesn't need specifying in the predicate).
public Append ( string predicate, object arg ) : RawWhereBuilder
predicate string The predicate to be appended.
arg object The argument value.
Результат RawWhereBuilder

ApplyTo() публичный Метод

Applies the predicate defined in this predicate builder to the result of SqlBuilder.Select().From().
thrown if selectFrom is null.
public ApplyTo ( IWhereOrOrderBy selectFrom ) : IAndOrOrderBy
selectFrom IWhereOrOrderBy The result of the select from method call.
Результат IAndOrOrderBy

ToString() публичный Метод

Returns a System.String that represents this instance.
public ToString ( ) : string
Результат string