IsNotEmpty
public void IsNotEmpty(string key);
Parameter
Value | Type | Description |
---|---|---|
key | string | Column's key value |
Description
It is used to search the data whose key column data exists.
- To search the data whose key column data is not null, use the IsNotNull method.
- This method also searches rows whose data is null.
The key must not begin with a number. If it does, a warning is displayed, and 'Where' is not added.
Example
where.IsNotEmpty(string key, T value);