Hello,
when I insert a row in the storage with this json :
int money = 12;
SimpleJSON.JSONClass json = new SimpleJSON.JSONClass();
json.Add("Money", new SimpleJSON.JSONData(money));
if I try to query with orderby :
NetworkServices.Instance.StorageService.FindDocsWithQueryPagingOrderBy(DbName, CollectionName,uselessQuery , 10, 0, "Money", OrderByType.ASCENDING,null);
I don't get an order by number, the result is like "money" is treated like a string.
How to get an order by number ?
Thank you !