I am trying to merge multiple datacolumns in a datatable. Eg. The address data is stored in a different columns such as, Housename, street, city and postcode. I want to merge those datacolumns in to one and put it into one datacolumn as "Address".
Any suggestions while I do research?
Thank you
Add a new datacolumn to the datatable, and use it's Expression property ( more info here http://msdn.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx )
in the expression property uou can concatenate the value of other column like that
Where Address, City and State are other columns of the datatable