Telerik gridview : How to refresh grid view after Database change(Telerik gridview:数据库更改后如何刷新网格视图)
问题描述
我在 C# winform 应用程序中使用 radgridview
来显示数据库中的数据.我还通过 ADO.Net 更改数据库.问题是在我更改数据库后,例如通过删除一行或添加新行,更改不会出现在 gridview 中.
我还想提一下,我已经通过智能标签将数据库绑定到 gridview,当我尝试创建一个新数据集并将其分配给 radgridview1.datasource
时,我遇到了很多错误.
关于如何强制 radgridview
重新加载它的 datasource
的任何建议?
I'm using radgridview
in C# winform application to show data from database. I'm also altering database through ADO.Net. The problem is after I change the database, for example by deleting a row or adding a new row, changes do not appear in gridview.
I also want to mention that I have bound database to gridview through smart tags and when I tried to create a new dataset and assign it to radgridview1.datasource
I got tons of errors.
Any suggestion on how can force radgridview
to reload it's datasource
?
推荐答案
嗯,我自己找到了答案.虽然它只适用于 dataGridView
而不适用于 dataListView
.
删除记录并提交对数据库的更改:
Well, I found the answer myself. Although it only works on dataGridView
and doesn't work on dataListView
.
To delete a record and commit changes to database :
radGridView1.CurrentRow.Delete();
this.yourTableAdapter.Update(yourDataSet);
另一方面,如果您添加了新记录并且您想重新整理列表:
On the other hand, if you have added new records and you want to reform the list :
this.yourTableAdapter.Fill(yourDataSet.yourTabel);
如果您知道如何对 dataListView
做同样的事情,我会很高兴听到.
If you know how to do the same with dataListView
, I'll be glad to hear.
这篇关于Telerik gridview:数据库更改后如何刷新网格视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Telerik gridview:数据库更改后如何刷新网格视图
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01