I am working with MVC3 with razor view. I am trying to use a model from different project than the mvc3 project, for same its report compilation error as
CS0246: The type or namespace name 'MyNameSpace' could not be found (are you missing a using directive or an assembly reference?)
as answered in some other posts, I tried to add @using directive or editing web.config in Views folder, but it is still not working.
Could somebody please suggest.