-
Notifications
You must be signed in to change notification settings - Fork 10k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dotnet 9.0 scaffolding no longer works - errors when doing NavigationManager.NavigateTo in Create.razor #58951
Comments
Additional Information, which might help. Even though this was selected as InteractiveServer in the dropdown (as Dan did), if I do the following in App.razor, then it works.
and
This is not needed for dotnet 8.0, as it worked successfully without any changes to the App.Razor file. There definitely seems to be an issue with the scaffolding if done the way Dan did it in his demo. Hopefully it will not be difficult to resolve. |
I just hit this when walking the tutorial for 9.0 updates ... Note @coderdnewbie that it isn't the "Even though this was selected as InteractiveServer in the dropdown" (Interactive render mode) setting that places the render mode on I agree with you ... it's a regression of some sort. This behavior wasn't happening in 8.0. |
@danroth27 ... UPDATE: I'm going with the 8.0 framework in the 9.0 content to workaround this for now. The change is ⚡LIVE⚡ now. Temporarily use 8.0 framework ( I know from our earlier discussion on a separate doc task that you aren't favorable to that blaring red CAUTION note in articles 📣😬, but I really want devs to see the instruction on selecting the 8.0 framework. If they don't see it, they'll get rather upset when their app 💥, and it will probably result in doc issues. I'm just trying to head that off with the most noticeable notice that we have. If you want to remove or change the word "CAUTION," I can place HTML in the article for a red alert box. 👂 |
Is there an existing issue for this?
Describe the bug
Perform the Dan Roth tutorial in https://www.youtube.com/watch?v=ZN-CcfEY3Z8
At 5:39 when the Create button is pressed, a failure happens in
NavigationManager.NavigateTo("/movies");
This is the failure in VS2022 17.12:
Microsoft.AspNetCore.Components.NavigationException
HResult=0x80131500
Message=Exception_WasThrown
Source=Microsoft.AspNetCore.Components.Server
StackTrace:
at Microsoft.AspNetCore.Components.Server.Circuits.RemoteNavigationManager.NavigateToCore(String uri, NavigationOptions options)
at Microsoft.AspNetCore.Components.NavigationManager.NavigateToCore(String uri, Boolean forceLoad)
at Microsoft.AspNetCore.Components.NavigationManager.NavigateTo(String uri, Boolean forceLoad, Boolean replace)
at BlazorMovieCRUDDemo.Components.Pages.MoviePages.Create.d__5.MoveNext() in C:\Users\ajayt\Desktop\Upgrade to dotnet 9 GA\BlazorMovieCRUDDemo\BlazorMovieCRUDDemo\Components\Pages\MoviePages\Create.razor:line 58
at Microsoft.AspNetCore.Components.ComponentBase.d__30.MoveNext()
This is from the autogenerated scaffolding performed exactly as Dan does it.
This used to work in dotnet 8.0, but now fails in dotnet 9.0.
Additionally, my dotnet 8.0 project when upgraded to dotnet 9.0 fails here as well.
Expected Behavior
I expect this to work as it did in dotnet 8.0
Steps To Reproduce
Perform the Dan Roth tutorial in https://www.youtube.com/watch?v=ZN-CcfEY3Z8
At 5:39 when the Create button is pressed, a failure happens in
NavigationManager.NavigateTo("/movies");
This is scaffolded code in Create.razor in the MoviePages subfolder.
Exceptions (if any)
This is the failure in VS2022 17.12:
Microsoft.AspNetCore.Components.NavigationException
HResult=0x80131500
Message=Exception_WasThrown
Source=Microsoft.AspNetCore.Components.Server
StackTrace:
at Microsoft.AspNetCore.Components.Server.Circuits.RemoteNavigationManager.NavigateToCore(String uri, NavigationOptions options)
at Microsoft.AspNetCore.Components.NavigationManager.NavigateToCore(String uri, Boolean forceLoad)
at Microsoft.AspNetCore.Components.NavigationManager.NavigateTo(String uri, Boolean forceLoad, Boolean replace)
at BlazorMovieCRUDDemo.Components.Pages.MoviePages.Create.d__5.MoveNext() in C:\Users\ajayt\Desktop\Upgrade to dotnet 9 GA\BlazorMovieCRUDDemo\BlazorMovieCRUDDemo\Components\Pages\MoviePages\Create.razor:line 58
at Microsoft.AspNetCore.Components.ComponentBase.d__30.MoveNext()
.NET Version
9.0.0
Anything else?
The text was updated successfully, but these errors were encountered: