Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
4
Answers
subQuery using Linq
S VK
7y
250
1
Reply
// sql
returns
records
SELECT
*
FROM
InfoDetails
WHERE
InfoId =(
SELECT
tOP
1 InfoId
FROM
InfoMaster
WHERE
recordid=1
ORDER
BY
CreationDate
DESC
)
//
returns
0 records
db.InfoDetails.
Where
(u => u.InfoId ==(db.InfoMaster
.
Where
(x => x.recordid == Id).OrderByDescending(x => x.CreationDate).
Select
(x => x.InfoId).FirstOrDefault()))
.
Select
(t=> new InfoListViewModel
i need the above sql as linq lambda expression
sql returns reocrds but linq returns 0
Post
Reset
Cancel
Answers (
4
)
Next Recommended Forum
c# Robust Ling Idea
c# Linq Take Selected Records