Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have to develope a page where i have to show list of records through grid view(table1 binded).
there is row selection(by check box)and updating the status of record(by dropdown)and after submitting(button click) that row is inserted into diff (table2). table, i have to hide that row from the current display but not delete that record from grid binded table1.

plese help.
Posted

You can try the following

from t1 in db.Table1
join t2 in db.Table2 on t1.field not equals t2.field
select new { t1.field2, t2.field3}

regards
Faisal
 
Share this answer
 
Comments
Sandeep Mewara 24-Jun-11 15:56pm    
How is this anywhere related to question! :doh:

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