C# Class MicroLite.Builder.RawWhereBuilder

Afficher le fichier Open project: TrevorPilley/MicroLite Class Usage Examples

Méthodes publiques

Méthode Description
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.

Method Details

Append() public méthode

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.
Résultat RawWhereBuilder

Append() public méthode

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.
Résultat RawWhereBuilder

ApplyTo() public méthode

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.
Résultat IAndOrOrderBy

ToString() public méthode

Returns a System.String that represents this instance.
public ToString ( ) : string
Résultat string