sqllite xamarin.forms asyn c перестает отвечать - PullRequest
0 голосов
/ 01 апреля 2020

Я пытаюсь сделать asyn c с sql lite и Xamarin, следуя этому уроку

https://docs.microsoft.com/en-us/learn/modules/store-local-data-with-sqlite/6-exercise-use-sqlite-asynchronously

enter image description here

when I do this the whole app stops responding why ?

statusMessage.Text = "";
var people = App.PersonRepo.GetAllPeopleAsync();
peopleList.ItemsSource = people;

enter image description here

1 Ответ

1 голос
/ 02 апреля 2020

вам нужно использовать await при вызове async метода

var people = await App.PersonRepo.GetAllPeopleAsync()
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...