gpt4 book ai didi

entity-framework - SQLite + Entity Framework 4.0 + Identity 列/Autoinc 不起作用

转载 作者:行者123 更新时间:2023-12-03 12:15:33 26 4
gpt4 key购买 nike

这是我的 table :

-- Original table schema
CREATE TABLE [SchoolYear] (
[Start] datetime NOT NULL,
[End] datetime NOT NULL,
[Id] integer PRIMARY KEY ON CONFLICT ABORT AUTOINCREMENT NOT NULL
);

EF 设计器中的我的实体已将 StoredGeneratedPattern 设置为 Identity OR Compute,并且数据类型为 int64。

每次我插入第二个 SchoolYear 对象时,我都会收到此错误:

An object with the same key is already in the ObjectStateManager...

最佳答案

检查 autoincremented 属性的 StoreGeneratedPattern 属性是否在模型的 SSDL 部分中设置为“Identity”,而不是在 CSDL 中。
这是一个已知问题,生成代码时不考虑概念属性。

关于entity-framework - SQLite + Entity Framework 4.0 + Identity 列/Autoinc 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3259792/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com