Aniket Narvankar

Aniket Narvankar

  • 538
  • 2.1k
  • 581.1k

Sql to linq conversion

Oct 26 2021 5:24 PM

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


Answers (2)