User-344678856 posted
The issue I am experiencing, when the user hits my first page the request can come with a query string such as
https://myproject.com/?id=111111
if the user is authenticated on Office365, that works absolutely fine, but if the user is not authenticated, I have a link for him to authenticate
<a asp-area="AzureAD" asp-controller="Account" asp-action="SignIn">here</a>
When the user clicks the button, is redirected to Office365 for authentication, but after the authentication, he is redirected to the initial page of the app without any queries, like
https://myproject.com/
Any way of getting around this?