In my Asp.NET MVC4 application I want to add a field to my model without adding it to the database.
Sort of a field that only lives in c# instances of the model but not in the database itself.
Is there any annotation or other way to exclude the field from the database itself?
I mean an object I can read and write in runtime which the database has no knowledge of.