As the title says, is there a way in ASP .Net MVC (4) to mark a models property as "Transient" i.e. not persist to database.
I am looking to make a model to which most of the data is stored in an external system, I simply need to store a reference of that record in my system and fetch the data from the external system when needed. Am I able to do this using attributes or do I need to implement some sort of View Model?