Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8625529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T07:48:36+00:00 2026-06-12T07:48:36+00:00

I have an entity with a referential constraint of the form: Entity->Others and am

  • 0

I have an entity with a referential constraint of the form: Entity->Others and am attempting to delete the entity in question.

After loading the entity is deleted, then saved back, this works fine.

Entity entity = null;
entity = db.Entities.Where(o => o.Id == loadId).FirstOrDefault();

db.Entities.DeleteObject(entity);
db.SaveChanges();

Adding a single check to the entities of type Other related via the referential constraint causes an exception to be thrown on save

Entity entity = null;
entity = db.Entities.Where(o => o.Id == loadId).FirstOrDefault();

entity.Others.Count();

db.Entities.DeleteObject(entity);
db.SaveChanges();

With the exception being:

The operation failed: The relationship could not be changed because one or more of the foreign-key properties is non-nullable. When a change is made to a relationship, the related foreign-key property is set to a null value. If the foreign-key does not support null values, a new relationship must be defined, the foreign-key property must be assigned another non-null value, or the unrelated object must be deleted.

I’m not expecting much as I don’t have a complete and minimal code here, but the vaguest suggestion of how simply accessing Others invalidates the Entity for saving back would be hugely appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T07:48:38+00:00Added an answer on June 12, 2026 at 7:48 am

    Looks like some error in you mapping. Either you are using database first and your database has cascade delete allowed between Entity and Order but your EDMX models doesn’t or your database allows existence of Orders without Entity (nullable FK) but your classes do not.

    In the first case select the association in EDMX and modify its properties to support OnDelete in the right direction. In the latter case make sure that cardinality between Entity and Order is 0..1-N instead of 1-N. If you have FK exposed in Order make sure that it is nullable.

    Without cascade delete or nullable FK your first example should throw error (unless you have turned off constraint validation in the database which you should NEVER do). In such case you must first delete every dependent all dependent entities (Orders) before you can delete principal (Entity).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have Entity type class(Serializable, loaded and saved data at runtime) where user specified
I have an Entity Framework 4 design that allows referenced tables to be deleted
I have a self-referential relationship in an entity and for the life of me
I have entity Question . Entity Question has property Number . I need to
I have entity from form framework. public function editAction($id) { $request = $this->getRequest(); $r
I have entity Recipes and it has a HasMany collection comments. In a MVC
I have Entity Framework entities Events which have an EntityCollection of RSVP. I want
I have entity model like this (using EclipseLink and JPA 2.0): @Entity class A
I have entity e.g. Product which aggregates other entities such as Category . Those
In my business model I have Entity class (IPoint interface ) that has a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.