I've bound an ObservableCollection on the ViewModel to the AppointmentSource of a SfScheduler.
Whenever I open a page, I want to fetch this collection from a database and update the ViewModel property. When this is done from the constructor (when the page is initially created) it works fine. But since this page is in the TabBar, MAUI does not create a new page (and call the constructor).
I've tried to attach a behavior to the ContentPage to fetch and update the property on the ViewModel from the database. While the fetching works, the UI does not seem to be updating whenever I update the property.
Can anyone assist me with this?