Я пытаюсь сделать asyn c с sql lite и Xamarin, следуя этому уроку
https://docs.microsoft.com/en-us/learn/modules/store-local-data-with-sqlite/6-exercise-use-sqlite-asynchronously
when I do this the whole app stops responding why ? statusMessage.Text = ""; var people = App.PersonRepo.GetAllPeopleAsync(); peopleList.ItemsSource = people;
вам нужно использовать await при вызове async метода
await
async
var people = await App.PersonRepo.GetAllPeopleAsync()