If you pass more than one parameter to the Query method, it will automatically use a multiple query instead of a single query.
The C # Facebook SDK automatically adds query1 and query2. you only need to enter a query.
var fb = new FacebookClient("access_token"); dynamic result = fb.Query( string.Format("SELECT pid, object_id, src_big, owner FROM photo where object_id={0}", photoFbId), "SELECT first_name, last_name FROM user where uid in (select owner from
Then you can access the fql values.
var result0 = result[0].fql_result_set; var result1 = result[1].fql_result_set;
You can learn more about how to make requests using the Facebook C # SDK at http://blog.prabir.me/post/Facebook-CSharp-SDK-Making-Requests.aspx
source share