问题描述
我有一个嵌套列表,我需要将它转换为 C# 中的 DataSet.我发现了很多关于这个的例子,但他们没有做我需要的.我在列表中有一个列表,我需要 DataSet 中另一个 DataTable 中的嵌套列表.
I have a nested list and I need to convert it to DataSet in C#. I found many example about this but they dont do what I need. I have a list in a list, I need the nested list in another DataTable in the DataSet.
这是一个列表的例子
我使用下面的代码将 List 转换为 DataSet,但它没有将 Items 转换为 DataSet 中的 DataTable
I have used the code below to convert the List to DataSet but It didnt convert Items to DataTable in DataSet
如何将 Items 列表转换为另一个 DataTable 到 DataSet 中?
How can I convert the Items list to another DataTable into the DataSet?
推荐答案
你可以在你的代码中添加一点递归,像这样:
You can just add a bit of recursivity to your code, something like this:
这篇关于如何在 C# 中将嵌套列表转换为数据集的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!