Sorry for my english, it is not the native language for me.
I'm writing a web access to a large medical system.
Using ASP.NET MVC 4. It so happened that the models and controllers are in the other dll, what loaded when web-application started. Controllers are registered in the Unity container, and everything work fine.
But in the View does not work use the model classes directly. Razor view engine can not find their namespace.
How to fix it? How can you make use ViewEngine namespace library that is loaded into memory, but on which there is no reference of mvc-project?
Thank you in advance for your advice.