1
Answer

INNER JOIN on a DataSet

compuwiz02

compuwiz02

20y
1.9k
1
Hello, I am trying to do an INNER JOIN with 2 tables in my DataSet. One of the tables comes from an SQL source, however the second one is being populated from a file, so i cannot just do an inner join at the SELECT string level. Anyone has any idea how to do an INNER JOIN inside of a DataSet?
Answers (1)
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 14y
ok.. but i want to know the above script i posted giving correct output or not?
0
Naresh Babu Gopavaram

Naresh Babu Gopavaram

NA 256 203.5k 14y
no
 i want in linq 
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 14y

 resolved?

 will this not work...

 select rm.doc,rm.name,pd.address, cd.vaolum 'volumename'
 From RegistrationMaster RM inner join Partydetails pd 
 on rm.doc=pd.doc 
 inner join DocumentInfo DI 
 on rm.cdcode=DI.cdcode
 inner join CDMaster cd 
 on di.code = cd.code