c# – 如何通过实体框架自动生成Oracle数据库的身份?

前端之家收集整理的这篇文章主要介绍了c# – 如何通过实体框架自动生成Oracle数据库的身份?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Oracle提供者实体框架(beta),而我正面临一个问题.

我们的表有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;
原文链接:https://www.f2er.com/csharp/93776.html

猜你在找的C#相关文章