Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am wanting to order the list of Facebook friends returned by the Facebook C# SDK by last name. Using LINQ was the easiest way I was able to accomplish this, but I would like to know if there is an easier or more efficient method? I thought I would share this at a minimum since I could not find any other examples of it.

var client = new FacebookClient(FBToken.Value);
dynamic results = client.Get("me/friends?fields=id,name,picture");

var fbfsort = from dynamic friend in (IList<object>)results["data"] orderby friend.name ascending select friend;
foreach (var f in fbfsort) {
    //do something here...
} 
share|improve this question

1 Answer

You could use FQL like this:

var client = new FacebookClient(FBToken.Value);
dynamic result = client.Get("fql", new
{
    q = "SELECT uid, name, pic_small from user where uid in (select uid2 from friend where uid1=me()) order by name"
});

foreach (var item in result.data)
{
    // do something here...
}

Hope it helps!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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