ADO.NET 数据关系
如果我在 C# 代码中创建 2 个 DataTable 之间的关系,然后更新 DataSet 上的 DataAdapter + AcceptChanged,该关系是否会在服务器上重新执行,还是只是基于客户端的关系,仅在应用程序内有效?
谢谢,
基特
If I create a relation between 2 DataTable in my C# code and then update my DataAdapter + acceptChanged on my DataSet, will this Relation be repercuted on the server or is it only a client based relation which is effective only within the application?
Thanks,
KiTe
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该关系是在您的数据集中建立的,数据库不会被修改。
The relationship is made within your dataset, the database will not be modified.