Consider an implementation of the Entity Framework in a DAL assembly. I am needing to add a custom read-only property to an entity.
Person Class, as defined in the DB, contains fields like:
PersonID
FirstName
LastName
In the above example, I'd like to make a property called FullName. It would be the concatenation of
FirstName + " " + LastName;
Can anyone help point out in the .edmx
file whereabouts to define this new property?
Perhaps it's done within the GUI designer?