Skip to main content
Version: 6.0.0

FlattenRows

public BACKND.LitJson.JsonData FlattenRows();

Description

When the rows key exists in the returnValue returned upon successful request,
this method converts the rows value to a JsonData object and removes and returns all data types.

Example

var bro = Backnd.PlayerTable.Get("tableName", 10);
if(bro.IsSuccess() == false) {
return;
}

var json = bro.FlattenRows();

Return casess

When the rows key exists in returnValue
Unmarshalled JsonData object is returned.

When the rows key does not exist in returnValue
An empty JsonData object is returned.

When the returnValue does not exist
An empty JsonData object is returned.