I have a query like this
Select * From Good
where GoodCode in (Select GoodRef From GoodGroup Where GoodGroupRef=264)
In SqlCommand I want to execute it using LINQ. How I can execute command for this SQL command? I don’t know what the entity command for it is.
1 Answer