What LINQ providers exist for Twitter and how do they compare? Are there any features that allow you to request tweets, followers, and followers in addition to posting tweets? What about relational support? eg.
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 the Twitter API using Google. It is interesting to compare the available libraries in terms of LINQ capabilities, object-oriented support, and function support.
source
share