Hi List,
i just playing around with IPartImportsSatisfiedNotification
What's about this usage:
public async void OnImportsSatisfied()
{
Employees = await this.employeeService.EmployeLookupListAsync();
}
is there anything against?
The same goes for INavigationAware and:
public void asyncOnNavigatedTo(NavigationContext navigationContext)
{
mylist = await DoDatabaseStuff;
}
Is this ok or is there any hidden traps inside?
Thanks
Peter