We have 2 tables
tbl_members In this table we have all members details like memberId, name, age, etc
tbl_payment In this table we have all their payment details like paymentId, memberId, PaymentDate, etc
We want to select all of our user's names and display only their last paymentDate and Amount
Name PaymentDate Amount
----------------------------
Row1 12/12/2011 1200
Row2 12/18/2011 100
Row3 12/16/2011 99
Row4 12/08/2011 1500
How can this be done using linq?