Hi. for reference, this is about a Blazor Server App, .net9.
When running on my own laptop, but using the Azure platform, my app launches and I sign in. The App then uses MS Graph to obtain a list of tenants that my user has access to. The returned values are loaded into a list which is the source of a Datagrid. The list is then displayed on a page and when I click the required tenant, the App retrieves DB connection info and away we go.
I've now published this App to Azure, specifically into a Deployment slot called Staging.
When I launch the App, all appears to work ok, except that the Datagrid, when displayed, is empty.
My code shows that the list is being loaded with the tenant info, so there is no problem with MS Graph.
Here is the screenshot. Below the grid you can see that 6 tenants are being loaded.
The 6 statements in the text box beginning "Loaded Permitted Tenant" show the name of each entry (I know some aer duplicates, that's fine and expected. The "Code" column of the grid would differentiate these, but no data is showing there either).
So although the code is the same, and the Azure vaule being accessed is the same, and the vault data is still being retrieved, the grid is not showing the data when the App is launched from within Azure, but it is when the App is launched locally.
Can you please offer any suggestion(s) as to why this may be happening?
Here is a screenshot of the page code
Cheers
Reg