Skip to main content
Version: SDK-6.0.0

Equal

public void Equal(string key, string value);
public void Equal(string key, int value);
public void Equal(string key, long value);
public void Equal(string key, double value);
public void Equal(string key, bool value);

Parameter

ValueTypeDescription
keystringColumn's key value
valuestring(Selection) Data to compare
valueint(Selection) Data to compare
valuelong(Selection) Data to compare
valuedouble(Selection) Data to compare
valuebool(Selection) Data to compare

Description

It is used to search the data whose key column data is equal to the value.
The key must not begin with a number. If it does, a warning is displayed, and 'Where' is not added.

Example

where.Equal(string key, T value);