将数据行从现有表添加到新表
您好,我想添加一个数据行,我从数据表返回到新的数据表,
这是我使用的代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
两个数据表是否具有相同的架构? 如果这些错误与列、数据类型或键不匹配,则可能会引发这些错误。
Do the two data tables have the same schema? Those errors might be thrown if they do not match columns, datatypes, or keys.
您应该使用 Typed TableDataAdapters,我会让您的生活变得更加轻松......
这很容易做到和理解。
按照本教程强类型TableDataAdapters和DataTables
一旦你掌握这个概念,你应该这样做:
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: