Namespace in web.config
Make sure to add a reference in your web.config. This will allow you to omit TheBeerHouse.Models in your web pages.
<namespaces>
....
<add namespace="TheBeerHouse.Models"/>
</namespaces>
Also, you don't have to use ViewData.Model you can just use Model
|