I am using the facebook c# sdk for windows phone and cannot find any examples of how to use the multiquery functionality with one query being used as a parameter or source for the other.
Below is an example of what I'm trying to do, but this doesn't seem to work. Any help is appreciated.
string query0 = string.Format("SELECT aid, size, name, cover_pid, description, owner, modified_major, created, size FROM album WHERE owner = " + u.UID.ToString());
string query1 = string.Format("SELECT pid, aid, src FROM photo WHERE pid IN (SELECT cover_pid From #query0 )"); string[] queries = new string[2]; queries[0] = query0; queries[1] = query1; _fbClient.QueryAsync(queries);