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. |
exception | condition |
---|---|
ArgumentNullException | statement is null or empty |
- class BaseCriteria
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. |
exception | condition |
---|---|
ArgumentNullException | statement is null |
- interface ISqlQuery
- class BaseCriteria
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. |
exception | condition |
---|---|
ArgumentNullException | values is null or zero length array |
- class T
- class BaseCriteria