解决方案:存储更新、插入或删除语句影响了意外的行数 (0)

Solution for: Store update, insert, or delete statement affected an unexpected number of rows (0)(解决方案:存储更新、插入或删除语句影响了意外的行数 (0))
本文介绍了解决方案:存储更新、插入或删除语句影响了意外的行数 (0)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我为遇到异常的人找到了解决方案:

I found a solution for people who get an exception:

存储更新、插入或删除语句影响了意外的行数 (0).自加载实体以来,实体可能已被修改或删除.刷新 ObjectStateManager 条目.

但是,无论如何我有疑问.

But, anyway I have question.

我阅读了主题:实体框架:存储更新、插入、或删除语句影响了意外的行数 (0)."VMAtm,罗伯特·哈维

I read topic: Entity Framework: "Store update, insert, or delete statement affected an unexpected number of rows (0)." To VMAtm, Robert Harvey

就我而言,我有例如表格文章:

In my case I had for example table articles:

Articles
------------
article_id
title
date_cr
date_mod
deleted

我有触发器:

create trigger articles_instead_of_insert 
on articles instead of insert 
as      
    SET NOCOUNT ON;
    insert into articles(
        article_id, 
        title, 
        date_cr,
        date_mod, 
        deleted
    )
    select 
        user_id, 
        title, 
        isnull(date_cr, {fn NOW()}),
        isnull(date_mod, {fn NOW()}),
        isnull(deleted, 0)
    from inserted;
go

当我删除此触发器时,我不会收到此异常.所以这个触发器是有问题的.现在我有一个问题——为什么?我应该做些什么吗?

When I delete this trigger then I dont get this exception. So this trigger is problem. And now I have a question - Why? Should I do something?

推荐答案

解决方案:

try {
    context.SaveChanges();
} catch (OptimisticConcurrencyException) {
    context.Refresh(RefreshMode.ClientWins, db.Articles);
    context.SaveChanges();
}

这篇关于解决方案:存储更新、插入或删除语句影响了意外的行数 (0)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)