FirstKeyString
public string FirstKeyString();
Description
Checks the firstKey for paging processing.
Example
var bro = Backend.GameData.Get("tableName", new Where(), 10);
if(bro.IsSuccess() == false) {
return;
}
if(bro.HasFirstKey()) {
var firstKey = bro.FirstKeyString();
}
Return casess
When firstKey exists
firstKey is returned
When firstKey does not exist
string.Empty