我有以下类型的数据:
class Content {
public String RowKey ..
public String Title
}
a collection: ICollection<Content> contentItems
集合的数据如下所示,其中第一列是 RowKey,第二列是 Title
1.0 Topic1
1.1 Some text for topic1
1.2 More text for topic1
2.0 Topic2 header
2.1 Some text for topic2
2.3 Some more text for topic2
我要做的是创建以下内容:
<h2>1 Topic1</h2>
<ul>
<li>1.1 Some text for topic1</li>
<li>1.2 More text for topic1</li>
</ul>
<h2>2 Topic2 header</h2>
<ul>
<li>2.1 Some text for topic2</li>
<li>2.3 Some more text for topic2</li>
</ul>
我可以想办法使用循环、临时变量等来做到这一点,但有没有办法在 LINQ 中做到这一点?我已经看到了 LINQ 可以做的一些事情,如果你真的知道如何使用它,它似乎可以做很多事情。不幸的是,我的知识只不过是使用 LINQ 从集合中获取有序数据。