Today, I released the latest version of LINQ to Twitter. In addition to fixing bugs, the highlighted features of this release include support for DM Events, Extended Tweets and .NET Core. Here’s a demo of using extended mode tweets in a Search query: static async Task DoSearchAsync(TwitterContext twitterCtx) { string searchTerm = "\"LINQ to Twitter\" OR Linq2Twitter OR LinqToTwitter OR JoeMayo"; Search searchResponse = await (from search in twitterCtx.Search where search.Type == SearchType.Search ......