恢复对 EntitySet的更改在 Linq-to-SQL 中
我有一个 Linq-to-SQL 上下文,其中包含 EntitySet 中的更改。我想删除自上次调用 SubmitChanges()
以来对它所做的所有更改。我使用以下方法来恢复上下文的状态:
public static void RevertChanges(this DataContext context)
{
var changeSet = context.GetChangeSet();
var inserts = changeSet.Inserts.ToList();
var deleteAndUpdate = changeSet.Deletes.Concat(changeSet.Updates).ToList();
foreach (var inserted in inserts)
{
var table = context.GetTable(inserted.GetType());
table.DeleteOnSubmit(inserted);
}
if (deleteAndUpdate.Count > 0)
{
context.Refresh(RefreshMode.OverwriteCurrentValues, deleteAndUpdate);
}
}
这工作正常,除了基于表的 EntitySet 不会刷新,并保留其中的更改。
拒绝 EntitySet 中的修改的最佳方法是什么?
I have a Linq-to-SQL context with changes in an EntitySet. I want to get rid of all the changes I made to it since I last called SubmitChanges()
. I use the following method to revert the state of the context:
public static void RevertChanges(this DataContext context)
{
var changeSet = context.GetChangeSet();
var inserts = changeSet.Inserts.ToList();
var deleteAndUpdate = changeSet.Deletes.Concat(changeSet.Updates).ToList();
foreach (var inserted in inserts)
{
var table = context.GetTable(inserted.GetType());
table.DeleteOnSubmit(inserted);
}
if (deleteAndUpdate.Count > 0)
{
context.Refresh(RefreshMode.OverwriteCurrentValues, deleteAndUpdate);
}
}
This works fine, except that an EntitySet
based on the table doesn't get refreshed, and keeps the changes in it.
What is the best way to reject the modifications in an EntitySet
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法是什么?
这是唯一可以确定的方法。
第二个最佳选择是新建一个 EntitySet 并将其分配给属性 - 在 Designer.cs 文件中以相同的方式完成。
The best way?
It's the only way to be sure.
A second best option would be to new up an EntitySet and assign it to the property - same way is done in the designer.cs file.