I have an entity (table) that has the following two properties (fields):
I want to add the following read-only derrived properties (mainly for databinding purposes):
- FirstLastName: returns FirstName + " " + LastName
- LastFirstName: returns LastName + ", " + FirstName
How do I go about accomplishing this?
If this is specified in the documentation, just point me to it and I'll check it out. I checked both the forums and the documentation, and didn't have any luck, but may not be searching for the right terms.
Thanks in advance.