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 7860757
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T22:25:04+00:00 2026-06-02T22:25:04+00:00

In a typical relation one to many, when I delete like: var orderEntity =

  • 0

In a typical relation one to many, when I delete like:

var orderEntity = context.Orders.Single(o => o.orderID == entityID);
var baddetail = orderEntity.OrderDetails
                           .Single(od => od.orderDetailID == badOrderDetailID);
orderEntity.OrderDetails.Remove(baddetail);

I obtain the error:

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.

As a solution was proposed to extend the DBContext.SaveChanges()

public override int SaveChanges()
    {

        foreach (OrderDetails od in this.OrderDetails.ToList())
        {
            // Remove OrderDetails without Order.
            if (od.Order == null)
            {
                this.OrderDetail.Remove(od);
            }
        }

        return base.SaveChanges();
    }

But is checking for OrderDetails with null Orders, when orderID is not nullable seem`s odd. How is the proper way of doing this ?

EDIT:
As an example this odd deleting is happening when you expose through binding your Order.OrderDetails to and DataGrid.

  • 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-02T22:25:06+00:00Added an answer on June 2, 2026 at 10:25 pm

    You can just do this way:

    var orderEntity = context.Orders.Single(o => o.orderID == entityID);
    var baddetail = orderEntity.OrderDetails.Single(od => od.orderDetailID == badOrderDetailID);
    context.OrderDetails.Remove(baddetail);
    

    Because in your example you are not deleting entity. You are deleting relationship. So it tries to set null to your FK column and, of it is not nullable you will get and exception.

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

Sidebar

Related Questions

The typical Python threadpool will have a structure like this one: def run(self): while
Typical scenario: a class that a lot of people have worked on. I'd like
A typical producer-consumer problem is solved in python like below: from queue import Queue
The typical way to use : <?php class A { public $var; public function
i have in the database typical tables like user, usergroup, and they have relations.
Typical way of creating a CSV string (pseudocode): Create a CSV container object (like
Typical ISP setup. One server is the web server, another is the DB SQL
The typical ConfigParser generated file looks like: [Section] bar=foo [Section 2] bar2= baz Now,
Typical Event Log message looks like below. There you can find very interesting fields
A typical way to use JFileChooser includes checking whether user clicked OK, like in

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.