報(bào)錯(cuò)信息:Store update, insert, or delete statement affected an unexpected number of rows (0). Entities may have been modified or deleted since entities were loaded. See http://go.microsoft.com/fwlink/?LinkId=472540 for information on understanding and handling optimistic concurrency exceptions.
參考資料:
https://stackoverflow.com/questions/1836173/entity-framework-store-update-insert-or-delete-statement-affected-an-unexpec
原因:主鍵id未設(shè)置自增,導(dǎo)致插入失敗。
解決方案:表的主鍵id設(shè)置自增。
mysql設(shè)置方式:在表上右鍵-->設(shè)計(jì)表-->選中主鍵id-->勾選即可。
sqlserver設(shè)置方式:在表上右鍵-->設(shè)計(jì)表-->選中主鍵id-->雙擊“(是標(biāo)識(shí))”的值,改為是,標(biāo)識(shí)增量和標(biāo)識(shí)種子設(shè)置為1即可。
以上這篇EF(EntityFramework) 插入或更新數(shù)據(jù)報(bào)錯(cuò)的解決方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
您可能感興趣的文章:- IdentityServer4 QuckStart 授權(quán)與自定義Claims的問(wèn)題
- IdentityServer4實(shí)現(xiàn).Net Core API接口權(quán)限認(rèn)證(快速入門(mén))
- JPA中EntityListeners注解的使用詳解
- php中html_entity_decode實(shí)現(xiàn)HTML實(shí)體轉(zhuǎn)義
- 詳解ASP.NET中Identity的身份驗(yàn)證代碼
- c# 使用Entity Framework操作Access數(shù)據(jù)庫(kù)的示例
- Idea自動(dòng)生成Entity實(shí)現(xiàn)過(guò)程詳解