I would like to do a search using linq to twitter v.4. the query that I have managed to accomplish so far gets the user tweets.
Is there a way to search the same way as you would in the twitter search box?
e.g. when I type music in the search box in the browser it shows all the relevant tweets.
I found this code online but am getting the error message 'StatusType'does not contain a definition for search.
var statusTweets = from tweet in twitterContext.Search
where tweet.Type == StatusType.Search &&
tweet.Query =="twitter"&&
tweet.Count == 2 &&
tweet.IncludeEntities == true
select tweet;