In my BE class I have certain properties to match with table fields. I want to expose descriptive name for each of these properties. for example to show it as column header in grid.
For example, there is a property called FirstName
. I want to expose it's descriptive name as First Name
For this, I have created an array of pairs as a property of this BE class. i.e, myarray("FirstName","First Name")
Is there a better way of doing this?