Join and Group By with LINQ to Entities

Source: Internet
Author: User
Tags date1

Good code:

var query = (from s in db.ForumStatsSet

where s.LogDate >= date1 && s.LogDate <= date2

group s by new {

s.Topic.topicID, s.Topic.subject,

s.Topic.datum, s.Topic.Forum.forumID,

s.Topic.Forum.forumName,

s.Topic.Forum.ForumGroup.name } into g

orderby g.Count() descending

select new TopicStatsData

{

TopicId = g.Key.topicID,

Count = g.Count(),

Subject = g.Key.subject,

ForumId = g.Key.forumID,

ForumName = g.Key.forumName,

ForumGroupName = g.Key.name

});

var query = (from fg in db.ForumGroupSet

from f in fg.Forums

from t in f.Topics

from s in t.ForumStats

where s.LogDate >= date1 && s.LogDate <= date2

group s by new { t.topicID,

t.subject,

t.datum,

f.forumID,

f.forumName,

fg.name } into g

orderby g.Count() descending

select new TopicStatsData

{

TopicId = g.Key.topicID,

Count = g.Count(),

Subject = g.Key.subject,

ForumId = g.Key.forumID,

ForumName = g.Key.forumName,

ForumGroupName = g.Key.name

});

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.