The Twitter API does not offer this option, so LINQ and Twitter do not. However, here is what you can do:
- Complete your search query as usual. It will contain retweets.
Run a LINQ to Objects query on the results using the where clause, which sets the RetweetedStatus.StatusID == 0 condition, for example:
var nonRetweetedStatuses =
(from tweet in searchResponse.Statuses
where tweet.RetweetedStatus.StatusID == 0
select tweet)
.ToList();
, where, , , LINQ to Twitter RetweetedStatus, , . . StatusID 0 retweet, . , Text == null, .