これは私の LINQ クエリです。この LINQ クエリを Lambda 式を使用したクエリに変更するのを手伝ってください:
var query = from d in db.customers
from s in db.tbl_states
where d.cust_state == s.state_id
select new
{
d.cust_name,
s.state_name
};