string query1 = String.Format("\"query1\":\"SELECT pid, object_id, src_big, owner FROM photo where object_id={0}\"", photoFbId);
string query2 = String.Format("\"query2\":\"SELECT first_name, last_name FROM user where uid in (select owner from #query1)\"");
var client = new FacebookClient(accessToken);
dynamic imageArray = client.Query(query1,query2);
gives (100) queries parameter: array expected. in line dynamic imageArray = client.Query(query1,query2); What have I done wrong? The Query method accepts params string so it should be fine..