将DataList与数据集中的多个表绑定

发布于 2024-11-29 17:33:09 字数 132 浏览 0 评论 0原文

我有一个包含 4 个表的数据集,我将此数据集分配给数据列表。我想绑定数据列表中所有表中的一些字段。现在编写其唯一绑定位于数据集 0 索引上的表,在其他表列名称上给出异常。

如何将数据列表与数据集中的多个表绑定?

谢谢,

i have a Dataset with 4 tables , i m assigning this Dataset to datalist. i want to bind some fields from all tables in the datalist. Write now its only binding the Table which is on 0 index of dataset, on other table column name its giving exception.

How to bind the datalist with multiple table in dataset.?

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁梦 2024-12-06 17:33:09

您可以合并DataSet内的DataTables,然后绑定到datalist

 DataTable dtblFinal = new DataTable();

    foreach (DataTable table in dataset.Tables)
    {
        dtblFinal.Merge(table, false, MissingSchemaAction.Add);
    }

You can merge the DataTables that are inside the DataSet and then bind to datalist

 DataTable dtblFinal = new DataTable();

    foreach (DataTable table in dataset.Tables)
    {
        dtblFinal.Merge(table, false, MissingSchemaAction.Add);
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文