Skip to content

Instantly share code, notes, and snippets.

@jernejk
Created March 7, 2020 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jernejk/3a7cdd0ef7575fc72917175ae7b5e5f9 to your computer and use it in GitHub Desktop.
Save jernejk/3a7cdd0ef7575fc72917175ae7b5e5f9 to your computer and use it in GitHub Desktop.
public async Task<IEnumerable<Tweet>> GetTweetsWithQueryTags(CancellationToken ct = default)
{
return await _context.Tweets
.TagWith("GetTweets")
.ToListAsync(ct)
.ConfigureAwait(false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment