Greater
public void Greater(string key, int value);
public void Greater(string key, double value);
public void Greater(string key, bool value);
Parameters
Value | Type | Description |
---|---|---|
key | string | Column's key value |
value | int | (Selection) Data to compare |
value | long | (Selection) Data to compare |
value | double | (Selection) Data to compare |
Description
It is used to search the data whose key column data is greater than the value.
The key must not begin with a number. If it does, a warning is displayed, and 'Where' is not added.
Example
where.Greater(string key, T value);