C# Class DataAccessFramework.Querying.OperatorClause

A simple case class for creating AND and OR operators.
Inheritance: WherePart
Datei anzeigen Open project: PeteProgrammer/DataAccessFramework

Private Properties

Property Type Description
BuildSql void

Public Methods

Method Description
AddPart ( WherePart clause ) : void

Adds a new part to the clause.

OperatorClause ( string operatorName ) : System.Collections.Generic

Creates a new OperatorClause instance

Private Methods

Method Description
BuildSql ( BuildSqlContext context ) : void

Builds the SQL for the operator.

Method Details

AddPart() public method

Adds a new part to the clause.
public AddPart ( WherePart clause ) : void
clause WherePart
return void

OperatorClause() public method

Creates a new OperatorClause instance
public OperatorClause ( string operatorName ) : System.Collections.Generic
operatorName string
return System.Collections.Generic