Referential Integrity Constraint violation when attempting to set a FK to null

你离开我真会死。 提交于 2020-01-11 01:49:45

问题


I am trying to update an entity in EF6. I have read that if I wish to change a ForeignKey property, I have to then ensure the Navigation Property is the correct one, or set it to null.

I have taken the set to null approach, but I still receive the Referential Integrity Constraint Exception:

A referential integrity constraint violation occurred: The property value(s) of 'Contact.idContact' on one end of a relationship do not match the property value(s) of 'Entity.id_EntityContactInfo' on the other end.

But you can see in the debugger, that Entity.Contact is null, so I believe this shouldn't be throwing.

Any Ideas?

EDIT

This is how the entity is updated:

public T CommitUpdate<T>(T obj) where T : class
    {
        _DbContext.Set<T>().Attach(obj);
        _DbContext.Entry(obj).State = EntityState.Modified;
        _DbContext.Commit();
        return obj;
    }

回答1:


From what I see from comments, you are solving this problem:

I want to change the FK scalar, but not add the current item into the database again

You should have mapping something like this one:

public class MyEntity {
    ...

    public int ContactId { get; set; }

    [ForeignKey("ContactId")]
    public Contact Contact { get; set; }
    ...
}

As FK is declared as not-nullable, you have to set it.

Basically you have several options to do it:

  • Set ContactId to real ID in database, set Contact to null

    In this case, you will update FK with existing Contact in DB - hopefully the option you need.

  • Set ContactId to 0, and set Contact to new Contact(..)

    In this case, EF will try to create new Contact in DB first, and then will use its PK to feed ContactId FK.

  • Create empty Contact entity, set its ID to existing contact ID. Then, use this entity as Contact field for your entity in question. Then, attach that Contact to context with UnChanged state.

    Having this, you will say to EF that this Contact is already existing, should not be tracked and should not be changed, but its ID will be used as FK for your parent entity. Just take care that this Contact should be attached (in unchanged state) to the same context as its parent.



来源:https://stackoverflow.com/questions/25320296/referential-integrity-constraint-violation-when-attempting-to-set-a-fk-to-null

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!