I built an ASP.NET MVC Core app using .NET Core 3.0. This app was migrated from ASP.NET Core 2.2. It's fairly complex at this point. However, there is one view that I would like to make "richer". So, I was hoping to use Blazor (Server App).
I started by adding a Blazor Server App to my existing solution. My solution setup looks something like this:
MySolution
- MyBlazorApp
- MyMvcApp
I add added a reference from MyMvcApp
to MyBlazorApp
. However, I'm not sure how to actually show the Blazor app, in a view, in my existing MyMvcApp
. I basically want MyBlazorApp
nested within a view in my existing MyMvcApp
. Kind of like a widget. Is there a way to do this? If so, how?
Thank you!