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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T01:34:35+00:00 2026-06-12T01:34:35+00:00

I have a straight forward scenario class Person { [Required] public int Age {get;set;}

  • 0

I have a straight forward scenario

class Person
{
    [Required]
    public int Age {get;set;}

    [Required]
    public virtual Pet Pet {get;set;}
}

class Pet
{
      ...
}

both Person & Pet are mapped in the context. lazy loading is enabled.
If I attempt to update the age of the person I receive a validation error stating Pet is required.

var person = context.People.Find(id)
person.Age = 30;
context.SaveChanges(); //causes validation error.

I wouldn’t think I need to load related entities for the context to produce the correct sql statements. Am I missing something, or is this just not possible?

solution
given the limited options EF provides for this I went with disabling validation via an ActionFitler

public class DoNotValidateEntityFrameworkAttribute
    : ActionFilterAttribute
{
    public override void OnActionExecuting(HttpActionContext actionContext)
    {
        actionContext
            .ControllerContext
            .Configuration
            .DependencyResolver
            .GetService<DbContext>()
            .Configuration
            .ValidateOnSaveEnabled = false;

        base.OnActionExecuting(actionContext);
    }
}

class MyController : ApiController
{
    [DoNotValidateEntityFramework]
    public void Put(int id, Model model)
    {
          ...
    }
}
  • 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-12T01:34:36+00:00Added an answer on June 12, 2026 at 1:34 am

    One option is to use this instead:

    class Person
    {
        [Required]
        public int Age {get;set;}
    
        [Required]
        public int PetId { get; set; }
    
        public virtual Pet Pet {get;set;}
    }
    

    This will make just FK required but not the entity. Other options is turning validation off because it doesn’t support incomplete object graphs:

    context.Configuration.ValidateOnSaveEnabled = false; 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is my domain: public class ForumTheme { public virtual String Name { get;set;
I have a minimum age custom validator which is straight forward enough: The constraint(Minage.php)
I have the following domain class: public class Product { public virtual Guid Id
I have a fairly straight-forward scenario that I am trying to solve but I'm
The scenario is quite straight forward: I have content in table A and tags
I have a very straight forward master/slave replication setup with MySQL. ActiveRecord is configured
I have this very straight forward question regarding Thread and Timer classes in Java
I have a pretty straight forward task - Given the URL of a video,
Just a straight forward problem. I have a LinearLayout which has attribute in xml
I have this code implemented and I like how straight forward it is because

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.