Hi, App42 support team:
my code:
HashSet<string> selectKeys = new HashSet<string> ();
selectKeys.Add("user1");
selectKeys.Add("user2");
selectKeys.Add("user3");
GGCloudServiceAdapter.mInstance.mStorageService.SetSelectKeys (selectKeys);
Storage storage = GGCloudServiceAdapter.mInstance.mStorageService.FindAllDocuments ( "PLAY1", "DataCollection");
IList<Storage.JSONDocument> jsonDocList = storage.GetJsonDocList();
question1: Is this way corret? why I get 100 records every time? why the infomation I get isn't correct by the above way?
question2: Is there a way to query multiple key( eg. 10 different keys)?
Thank you!