Имеется база на EntityFramework и пакет TelegramBot. Пытаюсь сделать простой Select по ChatId:
var chatId = message.Chat.Id;
var cour = Db.Couriers.Where(x => x.ChatId == chatId).FirstOrDefault();
И именно на этом моменте ловлю исключение. Гугления не привели к решению.
Все исключение: System.NotSupportedException: "A second operation started on this context before a previous asynchronous operation completed. Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context. Any instance members are not guaranteed to be thread safe."
Так же нужно отметить, что сам метод помечен async и взят с гитхаба TelegramBot.