Click here to Skip to main content
15,905,963 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
SQL
select * from Table1 where ColCode in
               (select distinct ColCode from Table2 where CodeNo = 12345678  and Active = 'Y')
Posted

1 solution

C#
var result = from t1 in Table1
where t1.ColCode  in 
(from t2 in Table2 where t2.CodeNo == 12345678 && t2.Active == 'Y' select t2.ColeCode).Distinct() select t1;


hope it will help you..

mark as answer if solves your problem..
 
Share this answer
 
Comments
divesh12 25-Oct-11 10:00am    
Sorry its not in correct format. "In" not work in LINQ

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