/// <summary> /// This is an example showing how to get an item using it's id. For example if $select columns are specified and the returned data is limited then this can be used to get all the details by using the items's id. /// </summary> public void Lookup() { Highscore score = GetScore(); StartCoroutine(_table.Lookup <Highscore> (score.id, OnLookupCompleted)); }
// REST FUNCTIONS public void Lookup(MobileServiceTable <SpawnFlag> table, SpawnFlag item) { table.Lookup <SpawnFlag>(item.id, OnLookupCompleted); }