What LINQ providers exist for Twitter and how do they compare? Are there any that let you query tweets, following, and followers in addition to publishing tweets? What about relational support? e.g.
from user in my-followers
where user.name.contains("drew")
and user.followers.count > 10
from tweet in user.tweets
where tweet.message.length < 100
select tweet.message
Edit: Yes, I can easily find Twitter APIs using Google. What's interesting is a comparison of the available libraries in terms of their LINQ capabilities, object-orientedness, and feature support.