Sir/Ma'am I want to convert the below mentioned SQL query into LINQ how can I achieve this.
select * from dbo.Main as M
where M.ApplicationId in
(select distinct R.ApplicationId from tblRecomSanctionedDetail R
where R.UpdateByUserId = 1011 )
tried using my limited knowledge with LINQ but could not get the output.