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