我们的表有ID列,它们被设置为StoreGeneratedPattern中的IDentity.我认为EF将自动执行“底层作品”,如创建序列,并为每个添加到表中的记录获取新的身份.但是当我运行代码来添加一个新的记录,比如:
var comment = new Comment{ ComplaintID = _currentComplaintID,Content = CommentContent.Text,CreatedBy = CurrentUser.UserID,CreatedDate = DateTime.Now};context.Comments.Addobject(comment);context.SaveChanges();
一个异常仍然抛出,就是这样
{“ORA-00001: unique constraint (adminMGR.CONSTRAINT_COMMENT)
violated”}(CONSTRAINT_COMMENT is the constrain requires that comment IDentity
must be unique.
我该如何解决?
非常感谢你!
解决方法 StoreGeneratedPattern =“IDentity”只是告诉EF,该值将在插入时生成DB-sIDe,并且它不应该在insert语句中提供一个值.您仍然需要在Oracle中创建一个序列:
create sequence ComplaintIDSequence minvalue 1 maxvalue 9999999 start with 1 increment by 1;
并使触发器使表插入使用它:
create or replace trigger CommplaintIDTrigger before insert on comment for each row begin if :new.ComplaintID is null then select ComplaintIDSequence.nextval into :new.ComplaintID from dual; endif; end;总结
以上是内存溢出为你收集整理的c# – 如何通过实体框架自动生成Oracle数据库的身份?全部内容,希望文章能够帮你解决c# – 如何通过实体框架自动生成Oracle数据库的身份?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)