Last active
March 7, 2020 13:00
-
-
Save jernejk/ebca2642ab85147d1f363fb9b9903d44 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task<IEnumerable<Tweet>> GetTweets(CancellationToken ct = default) | |
{ | |
return await _context.Tweets | |
.ToListAsync(ct) | |
.ConfigureAwait(false); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment