I have a mvc web project and other project where I have entities from "Database first" entity approach. I referenced Entities project into my Web project as seen on image below
Structure: http://i.imgur.com/h5ZppiG.png
Now I created simple controller with automatic CRUD operations.
The error I get is still complaining about not having Entities referenced: http://i.imgur.com/1jaVqr9.png
This is how type is implemented in View:
@model IEnumerable<Entities.Users>
What seems to be the problem?