How to convert this sql query to linq
Select * from table a join table b
on a.id = b.id
join table c
on b.id = c .id
where a.name = @name
and b.age = @age
not want to use from and join,want to bring records from a and b and then filter it with c table