Hi,
I'm confused as to how databinding really works. I have a powerapp that uses a sql azure database (database diagram attached). On one screen i show the user all the 'Events' for a 'Group' that the user selected. On another screen I show all the 'Events' 'Room' that the user selected
I expect all tables to have way more than 500 rows,
So if a user goes to the screen that shows the 'Events' for a 'Group', I expect powerapps to fetch the first 500 rows where the GroupId equals the selected Group. If the user navigates to a screen that shows all the 'Events' for a 'Room' that the user has selected I expect where the RoomId equals the selected Room.
In such a case what would the Refresh(Event) function do?
Does each control get it's own copy of the data returned from a datasource based on its filter criteria? If so, does the refresh function refresh all those copies?
I think I am missing a key concept here.