组合B列中的数据库单元以匹配VB.NET中A列中的单元格

时间:2013-06-03 19:31:45

标签: asp.net vb.net linq

我有一个表格(从SQL数据库中检索的数据),格式为:

╔═══════╦══════════════╗
║ Model ║ Manufacturer ║
╠═══════╬══════════════╣
║ A     ║            1 ║
║----------------------║
║ A     ║            2 ║
║----------------------║
║ A     ║            3 ║
║----------------------║
║ B     ║            4 ║
║----------------------║
║ B     ║            5 ║
║----------------------║
║ C     ║            6 ║
║----------------------║
║ D     ║            7 ║
║----------------------║
║ D     ║            8 ║
║----------------------║
║ D     ║            9 ║
║----------------------║
║ D     ║           10 ║
╚═══════╩══════════════╝

当我将数据绑定到<tr>时,每行都是它自己的<asp:datagrid>。但我需要的是:

╔═══════╦══════════════╗
║ Model ║ Manufacturer ║
╠═══════╬══════════════╣
║ A     ║            1 ║
║       ║            2 ║
║       ║            3 ║
║----------------------║
║ B     ║            4 ║
║       ║            5 ║
║----------------------║
║ C     ║            6 ║
║----------------------║
║ D     ║            7 ║
║       ║            8 ║
║       ║            9 ║
║       ║           10 ║
╚═══════╩══════════════╝

我花了很多时间搜索并尝试了很多不同的东西,其中大部分使用LINQ。但是我对LINQ的了解和理解很少。我想(但我可能完全错了),我最接近的是来自这个问题/答案:Linq query to combine cell results?。我稍微修改过的版本是:

Dim results = table.AsEnumerable().GroupBy(Function(x) x.Field(Of String)("Model")).[Select](Function(grouping) New With {
        .Key = grouping.Key,
        .CombinedModel = grouping.Aggregate(Function(a, b) a + " " + b)
    }).[Select](Function(x) New ModelRecord() With {
        .Manufacturer = x.Key.Manufacturer,
        .Model = x.CombinedModel
    })

但是由于我缺乏LINQ知识,我不理解“定义一个具体类型来表示Row”(这在我的代码中会产生ModelRecord()的问题)。

此时我几乎完全迷失了。我是不是太复杂了?完全错了吗?这里的任何帮助都会非常感激。

2 个答案:

答案 0 :(得分:1)

我认为这不再使用DataGrid或GridView,而是更适合中继器,您可以更好地控制数据的格式。然后,您可以将数据加载到带有制造商列表(Dictionary<Model, List<Manufacturer>>)的模型字典中。加载对象后,您可以确定如何在Repeater中显示它。

答案 1 :(得分:1)

我在评论中提到的

This solution有效。谢谢你试一试。