如何交换 TableAdapter DataView?
我希望用户对 TableAdapter 有不同的“视图”。这些不需要提交回数据库。
我尝试过类似以下的事情 mytba.DataView = someOtherDataView; 没有成功。
可以这样做吗?
I want a user to have different "views" of a TableAdapter. These do not need to be committed back to the database.
I have tried something like the following
mytba.DataView = someOtherDataView;
with no success.
Is it possible to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要从基础DataTable 创建一个新的DataView。
我已经有一段时间没有使用 TableAdapters了,但是你可以用它填充数据表
You need to create a new DataView from the underlying DataTable.
It's been a while since I used TableAdapters, but you can fill a data table with it