Click here to Skip to main content
16,018,419 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I HAVE TWO DATASETS I
STUDENT_ID,1,2 AS COL

DS2

STUDENT_ID 3,4 AS COL

I WANT TO INNER JOIN THESE TWO AND GET THE RESULT
LIKE

STUDENT_ID ,1,2,3,4 AS OUTPUT

AND FILL LISTVIEW IN VB.NET DYNAMICALLY
Posted
Comments
Rajesh Anuhya 29-Mar-11 5:27am    
Don't Shout

If you are using the SQL database, then instead of taking data in separate datatables, you can combine before assinging to dataset by using stored procedure.

Another option is to use LINQ

http://msdn.microsoft.com/en-us/library/bb386921.aspx[^]


http://support.microsoft.com/kb/326080/en-us[^]
 
Share this answer
 
Linq Over Data Sets

Here[^]
 
Share this answer
 

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