Click here to Skip to main content
15,796,456 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
merge two data table with same row into single one,but the condition for the table differs.
"i have set that data table as a data set because i m using two select query"
For instance,

tbl 1
S.no, MeetingName,Assigned by
1 abc A
2 wer A


tbl 2
S.no, MeetingName,Assigned by
1 abc B
2 wer B


I want it as
S.no, MeetingName,Assigned by
1 abc A
2 wer A
3 abc B
4 wer B
Posted

1 solution

C#
firstDataTable.Merge(secondDataTable);
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900