2013-07-18 61 views
1

您好我有情況下,我從我的數據庫獲取數據,它看起來像這樣的一組行:組基於列

enter image description here

我第一次使用實體框架數據庫和存儲過程來得到這個data.This是我找回型號:

public partial class GetELearningSessionsForStudent_Result 
{ 
    public int LessonNumber { get; set; } 
    public string LessonTitle { get; set; } 
    public Nullable<int> Status { get; set; } 
    public Nullable<System.DateTime> TargetDate { get; set; } 
    public string EventTitle { get; set; } 
} 

現在我想能組LessonNumber並把它作爲一個重點,這將包含以下內容:

 KEY         Data 
{LessonNumber AND LessonTitle} {Status , TargetDate , EventTitle} 

我一直在嘗試這樣做幾個小時,感覺我是somehoe缺少的東西。 我該如何做到這一點?

回答

1

這是你在找什麼?

listOfItems.GroupBy(key => new { key.LessonNumber, key.LessonTitle }, 
    data => new {data.Status, data.TargetDate, data.EventTitle});