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..

link|improve this question

Please rephrase this as a question. – Drew Hoskins Aug 30 '11 at 20:22
done. can you please undo the downvote? – Ryan Aug 30 '11 at 20:35
I wasn't the one who downvoted it. Just trying to guess why (s)he did. – Drew Hoskins Aug 30 '11 at 23:33
feedback

2 Answers

up vote 0 down vote accepted

If you pass more then one parameter to the Query method, it will automatically use the multi-query instead of single query.

The Facebook C# SDK automatically adds the query1 and query2. you only need to enter the 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 #query1)");

You can then access the values of the fql by.

var result0 = result[0].fql_result_set;
var result1 = result[1].fql_result_set;

You can learn more about making requests using Facebook C# SDK at http://blog.prabir.me/post/Facebook-CSharp-SDK-Making-Requests.aspx

link|improve this answer
feedback

I downloaded the source. Assuming that's the one you're using, there is no overload that takes two strings.

    public virtual object Query(string fql)
    {
        Contract.Requires(!String.IsNullOrEmpty(fql));

        var parameters = new Dictionary<string, object>();
        parameters["query"] = fql;
        parameters["method"] = "fql.query";

        return Get(parameters);
    }

    public virtual object Query(params string[] fql)
    {
        Contract.Requires(fql != null);

        var queryDict = new Dictionary<string, object>();

        for (int i = 0; i < fql.Length; i++)
        {
            queryDict.Add(string.Concat("query", i), fql[i]);
        }

        var parameters = new Dictionary<string, object>();
        parameters["queries"] = queryDict;
        parameters["method"] = "fql.multiquery";

        return Get(parameters);
    }
link|improve this answer
doesn't params mean I can have as many strings as i want? – Ryan Aug 31 '11 at 14:45
if you pass exactly one parameter it will call Query(string fql), if you pass more than one it will call Query(params string[] fql). – prabir Sep 6 '11 at 7:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.