I am working with asp.net mvc 4 and entity framework code-first approach. I have the following entity model\[code\]public class User{ public virtual int Id { get; set; } public virtual String FirstName { get; set; } public virtual String MiddleName { get; set; } public virtual String LastName { get; set; }}\[/code\]For the user list view page I need to show Full Name, I am trying to create a get only property in user model like\[code\]public virtual String FullName{ get{ return FirstName + " " + MiddleName + " " + LastName; }}\[/code\]But I am not sure if it will work, besides I also don't want entity framework to map this to a database column.Can I use similar get only property generated from other properties for only view?Can any one can give me any suggestion on what to do??