Tuesday 17 June 2014

Union Between two table in C# linq

 var tbUnion = dtSame.AsEnumerable()
                             .Union(dtSmaller.AsEnumerable());
                DataTable unionTable = tbUnion.CopyToDataTable();

No comments:

Post a Comment