Linq To Sql - DataContext.SubmitChanges() 问题

发布于 2024-08-31 05:36:54 字数 703 浏览 1 评论 0原文

我有一个这样的代码。

DBContext是Datacontext实例。

try
            {
                TBLORGANISM org = new TBLORGANISM();
                org.OrganismDesc = p.Subject;
                DBContext.TBLORGANISMs.InsertOnSubmit(org);
                DBContext.SubmitChanges();
            }
            catch (Exception)
            {
            }

此时,我想忽略该错误并希望被跳过。不得重试。 但是,当我尝试另一个插入(例如

                TBLACTION act = new TBLACTION();
                act.ActionDesc = p.ActionName;
                DBContext.TBLACTIONs.InsertOnSubmit(act);
                DBContext.SubmitChanges();

SubmitChanges)时,首先会重试之前的尝试。

我怎样才能告诉“跳过错误,不要重试”?

I have a code like this.

DBContext is Datacontext instance.

try
            {
                TBLORGANISM org = new TBLORGANISM();
                org.OrganismDesc = p.Subject;
                DBContext.TBLORGANISMs.InsertOnSubmit(org);
                DBContext.SubmitChanges();
            }
            catch (Exception)
            {
            }

At this point, I want to IGNORE the error and want to be skipped. Not to be retried.
But when I try another insert like

                TBLACTION act = new TBLACTION();
                act.ActionDesc = p.ActionName;
                DBContext.TBLACTIONs.InsertOnSubmit(act);
                DBContext.SubmitChanges();

SubmitChanges firstly retries previous attempt.

How can I tell "skip errors, don't try again"?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

桃扇骨 2024-09-07 05:36:54

第二次创建 DBContext 的新实例。

但为什么要跳过错误呢?

Create a new instance of DBContext the second time.

But why do you want to skip errors?

哆啦不做梦 2024-09-07 05:36:54

试试这个:DBContext.SubmitChanges(ConflictMode.ContinueOnConflict)。
希望它会有所帮助。

Try this: DBContext.SubmitChanges(ConflictMode.ContinueOnConflict).
Hope it will help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文