我有一个对象:
public class DataItem
{
public string Location
{
get;
set;
}
public List<string> PersonList
{
get;
set;
}
}
我从一个表中得到一些结果,这些结果返回如下:
Room1 John
Room1 Jim
Room1 Dawn
Room1 Bob
Room1 Katie
我有一些我写过的 LINQ:
var grouped = from table in sqlResults.AsEnumerable()
group table by new { placeCol = table["LOCATION"] } into groupby
select new
{
Value = groupby.Key,
ColumnValues = groupby
};
哪个分组我的结果......但我想把它放到我的对象(DataItem)中。我看过几个例子,但没有任何效果......我错过了什么?