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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:54:01+00:00 2026-05-26T10:54:01+00:00

I have an Entity. Mandate . Every mandate has a required:many relation to a

  • 0

I have an Entity. Mandate. Every mandate has a required:many relation to a Person (NavigationProperty). I use the DbContext API with (LazyLoadingEnabled, AutoDetectChangesEnabled, ValidateOnSaveEnabled, ProxyCreationEnabled)

Now I like to delete a Mandate entity. The mandate entities are loaded by another context with AsNoTracking().

message.Result.
    ObserveOn(On<DataComposition>.Scheduler).
    Where(r => r).
    Subscribe(_ =>
    {
        using (var unit = UnitOfWork.Begin())
        {
            var mandate = this.SelectedItem.OriginalEntity;

            this.mandateRepository.Attach(mandate);
            // mandate.Person.ToString();

            this.mandateRepository.Delete(mandate);

            unit.Commit();
        }

        this.List.RemoveOnUi(this.SelectedItem);
    });

Now during committing I get the following exception: Entities in 'CodeFirstContainer.Mandates' participate in the 'Mandate_Person' relationship. 0 related 'Mandate_Person_Target' were found. 1 'Mandate_Person_Target' is expected.

The delete works if I include the Person Property during the population/selection or if I visit the Property (lazyloading), but I DONT LIKE to materialize/hold many entities only for the deletion case and I DONT LIKE to trigger more than a single DELETE query to db!

  • 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-05-26T10:54:02+00:00Added an answer on May 26, 2026 at 10:54 am

    The fact that, if you have the navigation property mandate.Person populated, the following SQL statement …

    delete [dbo].[Mandates]
    where (([Id] = @0) and ([PersonId] = @1))
    

    … is sent to the database, lets me think that the navigation property indeed must be populated with a person with the correct PersonId to delete the parent.

    I have no idea why Entity Framework just doesn’t send a delete statement with the primary key …

    delete [dbo].[Mandates]
    where ([Id] = @0)
    

    … as I had expected.

    Edit

    If the Mandate entity has a foreign key property PersonId for the Person navigation property, the expected SQL (the second above) is sent to the database. In this case the Person navigation property can be null and the value of the FK property PersonId doesn’t matter.

    Edit 2

    If you don’t want to introduce a FK property the way with the least DB-roundtrip-costs would probably be to fetch the person’s Id and then create a dummy person with that key in memory:

    // ...
    var personId = context.Mandates
        .Where(m => m.Id == mandate.Id)
        .Select(m => m.Person.Id)
        .Single();
    
    mandate.Person = new Person { Id = personId };
    
    this.mandateRepository.Attach(mandate);
    this.mandateRepository.Delete(mandate);
    // ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let say I have an entity user which has a one to many relationship
I have entity Unit and Tag , each with to-many relation to other. I
let's say I have entity Person. When I try to use with hibernate createQuery,
I have entity Order witch has @OneToOne relation to second entity File , relation
I have entity Problem mapped using many-to-many to entity Tag (Problem has a list
I have entity Recipes and it has a HasMany collection comments. In a MVC
In my business model I have Entity class (IPoint interface ) that has a
I have an entity class that has a property with an underlying db column
I have an entity that has a state table associated with it. The state
I have an Entity called Keyword, and it has two rows: id comment_id foo_id

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.