Skip to main content
Version: SDK-6.0.0

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

ValueTypeDescription
keystringColumn's key value
begin/endint(Selection) Data to compare
begin/endlong(Selection) Data to compare
begin/enddouble(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);