LINQ to Twitter Comparison

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.

+3
source share
3 answers

#, API

+4

LINQ to Twitter, . , - Twitter. .

TweetSharp allows you to define an API-based query and you can include the response in data classes in one line of code and use LINQ over Objects with the result, but expecting LINQ to act like a real filter with a delayed execution and everything else is a failed metaphor against the REST API .

+2
source

Source: https://habr.com/ru/post/1719951/


All Articles