Comment by mattmanser
13 hours ago
That's pretty much identical to an ORM:
db.Users
.Inlude(u => Posts)
.Select(u => new {
u.Id,
Count = u.Posts.Count()});
13 hours ago
That's pretty much identical to an ORM:
db.Users
.Inlude(u => Posts)
.Select(u => new {
u.Id,
Count = u.Posts.Count()});
No comments yet
Contribute on Hacker News ↗