BaseCriteria.NotIn method (1 of 3)
namespace: Serenity.Data assembly: Serenity.Net.Data
Creates a new binary NOT IN criteria containing this criteria as the left operand.
public BaseCriteria NotIn(BaseCriteria statement)
| parameter | description |
|---|---|
| statement | The statement. |
Exceptions
| exception | condition |
|---|---|
| ArgumentNullException | statement is null or empty |
See Also
- class BaseCriteria
BaseCriteria.NotIn method (2 of 3)
namespace: Serenity.Data assembly: Serenity.Net.Data
Creates a new binary NOT IN criteria containing this criteria as the left operand.
public BaseCriteria NotIn(ISqlQuery statement)
| parameter | description |
|---|---|
| statement | The statement. |
Exceptions
| exception | condition |
|---|---|
| ArgumentNullException | statement is null |
See Also
- interface ISqlQuery
- class BaseCriteria
BaseCriteria.NotIn<T> method (3 of 3)
namespace: Serenity.Data assembly: Serenity.Net.Data
Creates a new binary NOT IN criteria containing this criteria as the left operand.
public BaseCriteria NotIn<T>(params T[] values)
| parameter | description |
|---|---|
| T | Type of values |
| values | The values. |
Exceptions
| exception | condition |
|---|---|
| ArgumentNullException | values is null or zero length array |
See Also
- class T
- class BaseCriteria