Merge two or more columns in c# datatable
ds.Tables[1].Columns.Add(“NEWCOLUMNNAME”, typeof(System.String), “COL1+ ‘-’ + COL2″);
You can make any complex sql expression.
Blog by Shoaib Azeem
Merge two or more columns in c# datatable
ds.Tables[1].Columns.Add(“NEWCOLUMNNAME”, typeof(System.String), “COL1+ ‘-’ + COL2″);
You can make any complex sql expression.