无法向数据表添加新行

发布于 2024-11-03 15:25:39 字数 487 浏览 0 评论 0原文

我正在尝试向数据表添加两个新行。我的数据源由一个带有一张表(FooTable)和一列(FooName)的数据库组成。

请参阅以下代码。仅第一行“Mary”被添加并显示在我的 DataGrid 上,但第二行“Jesus”没有添加并显示。没有出现异常。为什么它不起作用?将多行动态添加到 DataTable 的正确方法是什么?

/* dg1 = DataGrid; ds = DataSet */
dg1.ItemsSource = ds.Tables;

/* dt = DataTable */
DataRow newRow = dt.NewRow();
newRow["FooName"] = "Mary";
dt.Rows.Add(newRow);

/* add another row to data table */
DataRow newRow2 = dt.NewRow();
newRow2["FooName"] = "Jesus";
dt.Rows.Add(newRow2);

I am trying to add two new Rows to a DataTable. My DataSource consist of a Database with one Table (FooTable) and one column (FooName).

See following code. Only the first Row "Mary" is added and displayed on my DataGrid, but not the second row "Jesus". No exception occurs. Why doesn't it work and what is the correct way to add multiple rows dynamically to DataTable?

/* dg1 = DataGrid; ds = DataSet */
dg1.ItemsSource = ds.Tables;

/* dt = DataTable */
DataRow newRow = dt.NewRow();
newRow["FooName"] = "Mary";
dt.Rows.Add(newRow);

/* add another row to data table */
DataRow newRow2 = dt.NewRow();
newRow2["FooName"] = "Jesus";
dt.Rows.Add(newRow2);

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文