将数据行从现有表添加到新表

发布于 2024-07-24 16:39:54 字数 350 浏览 8 评论 0原文

您好,我想添加一个数据行,我从数据表返回到新的数据表,

这是我使用的代码:

foreach (DataRow dr1 in dt.Rows)
{
  string AptType = dr1["AppointmentType"].ToString();
  if (AptType == "FreeTime")
  {
    dt2.ImportRow(dr1);
  }
}
RadGrid2.DataSource = dt2;
reader.Close();
conn.Close();

问题是,当我然后去运行带有表的页面时,我收到一个数据键错误,并且其中一列未被识别,

提前致谢

Hi i want to add a datarow that im getting back from a data table to a new datatable

this is the code im using:

foreach (DataRow dr1 in dt.Rows)
{
  string AptType = dr1["AppointmentType"].ToString();
  if (AptType == "FreeTime")
  {
    dt2.ImportRow(dr1);
  }
}
RadGrid2.DataSource = dt2;
reader.Close();
conn.Close();

the problem is that when i then go to run the page with the table on it im getting a datakey error and that one of the columns isnt being recognised

thanks in advance

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

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

发布评论

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

评论(2

时光与爱终年不遇 2024-07-31 16:39:54

两个数据表是否具有相同的架构? 如果这些错误与列、数据类型或键不匹配,则可能会引发这些错误。

Do the two data tables have the same schema? Those errors might be thrown if they do not match columns, datatypes, or keys.

债姬 2024-07-31 16:39:54

您应该使用 Typed TableDataAdapters,我会让您的生活变得更加轻松......

这很容易做到和理解。

按照本教程强类型TableDataAdapters和DataTables

一旦你掌握这个概念,你应该这样做:

MyTypedTableAdapter tableAdapter = new MyTypedTableAdapter();
    MyTypedDataTable dt = tableAdapter.GetData();
    foreach (MyTypedDataRow row in dt.Rows)
    {
        string AptType = row.AppointmentType;
        if (AptType == "FreeTime")
        {
            dt2.ImportRow(row);
        }
    }
    RadGrid2.DataSource = dt2;

You should use Typed TableDataAdapters, I would make your life so much easier...

This is very easy to do and to understand.

Follow this tutorial Strongly Typed TableDataAdapters and DataTables

Once you grasp the concept, you should do something like this:

MyTypedTableAdapter tableAdapter = new MyTypedTableAdapter();
    MyTypedDataTable dt = tableAdapter.GetData();
    foreach (MyTypedDataRow row in dt.Rows)
    {
        string AptType = row.AppointmentType;
        if (AptType == "FreeTime")
        {
            dt2.ImportRow(row);
        }
    }
    RadGrid2.DataSource = dt2;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文