I've been trying to use the twitter API 1.1 Linq to Twitter (for c#) to search for tweets at #something.
This is what I came up with:
var query = (from tweet in twitterContext.Search
where tweet.Type == SearchType.Search &&
tweet.Query == "#something"
select tweet).SingleOrDefault();
The problem is that this query only returns 6 statuses and I want to get at least 100. I've tried adding:
tweet.Count == 100
and
tweet.Statuses.Count == 100
with no luck, does anybody know what I am doing wrong?