I am using MVC3 framework to design a website. I pull the data in the controller from the ms sql database and one of the columns in the table is named as "do". When I try to create a view to display the information using the @Model keyword (eg: @Model.do) , I get an error:
Identifier expected; do is a keyword.
I want to know if there is a way to use the column names ( which are keywords in c#) in the MVC3 views or do I only have the choice of renaming the column in the database table ?
Thank You !!
