I have a table that have "first name" and "last name", when binding to a datagrid, I need to have column named "name", which is "first name" + SPACE + "last name"
As I using domaindatasource tag in xaml, any method to bind a column "first name" + SPACE + "last name"?
Is there any method like define a class to have for the table in edmx
Public string fullname { get { return firstName+"_"+lastName; } }
Thanks.