BaseCriteria.In method (1 of 3)
Creates a new binary IN criteria containing this criteria as the left operand.
public BaseCriteria In(BaseCriteria statement)
| parameter | description |
|---|---|
| statement | The statement. |
Return Value
A new binary IN criteria.
Exceptions
| exception | condition |
|---|---|
| ArgumentNullException | statement is null or empty |
See Also
- class BaseCriteria
BaseCriteria.In method (2 of 3)
Creates a new binary IN criteria containing this criteria as the left operand.
public BaseCriteria In(ISqlQuery statement)
| parameter | description |
|---|---|
| statement | The statement query. |
Return Value
A new binary IN criteria.
Exceptions
| exception | condition |
|---|---|
| ArgumentNullException | statement is null |
See Also
- interface ISqlQuery
- class BaseCriteria
BaseCriteria.In<T> method (3 of 3)
Creates a new binary IN criteria containing this criteria as the left operand.
public BaseCriteria In<T>(params T[] values)
| parameter | description |
|---|---|
| T | The type of values. |
| values | The values. |
Return Value
A new binary IN criteria.
Exceptions
| exception | condition |
|---|---|
| ArgumentNullException | values |
See Also
- class BaseCriteria