I have a problem with external razor views. In my project I have main mvc web assembly and dynamically loaded external class library assemblies(from DB) with their own Controlle
Try use the using directive in your Views in the dynamic assembly.
@using MyNamespace.MyPlugin.Models; @using MyNamespace.MyPlugin;
etc