Represents a search condition for a WHERE or HAVING clause
Default constructor
public Void SearchCondition()
Initializes a new instance of SearchCondition.
public Void SearchCondition(params predicates)
Name | Type | Summary |
---|---|---|
predicates | Predicate[] | A list of predicates |
Initializes a new instance of SearchCondition.
public Void SearchCondition(relation, params predicates)
Name | Type | Summary |
---|---|---|
relation | RelationalOperator | The relation between conditions |
predicates | Predicate[] | A list of predicates |
Predicates for the search condition
public IList<Predicate> Predicates { get; }
In this document