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

  • Home
  • SEARCH
  • 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 1928746
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T07:01:03+00:00 2026-05-17T07:01:03+00:00

Perhaps I’m missing something here, but it seems that anything in the object model

  • 0

Perhaps I’m missing something here, but it seems that anything in the object model tree 3 or more levels down, is ignored when using TryUpdateModel.

For example (simplified):

public virtual ActionResult SomeAction(int id, FormCollection form)
    {

        IValueProvider vpFrom = form.ToValueProvider();
        /*
        At this stage, vpForm contains:
        1)PropertyA
        2) PropertyB.SubPropertyA
        3) PropertyB.SubPropertyB.SubSubPropertyA
        */

        TryUpdateModel(someObjectModel, null, null, null, vpFrom);
        //The first two properties are applied, number (3) seems to be ignored

Am I missing something here? If this is just the way it is, has anyone come up with a workaround?

  • 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-17T07:01:03+00:00Added an answer on May 17, 2026 at 7:01 am

    A quick project created with the following model.

    public class TestModel {
        public TestModelA A { get; set; }
        public string Name { get; set; }
    }
    
    public class TestModelA {
        public TestModelB B { get; set; }
        public string Name { get; set; }
    }
    
    public class TestModelB {
        public TestModelC C { get; set; }
        public string Name { get; set; }
    }
    
    public class TestModelC {
        public TestModelD D { get; set; }
        public string Name { get; set; }
    }
    
    public class TestModelD {
        public TestModelE E { get; set; }
        public string Name { get; set; }
    }
    
    public class TestModelE {
        public string Name { get; set; }
    }
    

    Here’s my edit – which is essentially the same as yours

    [HttpPost]
    public ActionResult Edit(FormCollection form) {
        IValueProvider vpFrom = form.ToValueProvider();
    
        Models.TestModel t = new Models.TestModel();
    
        TryUpdateModel(t, null, null, null, vpFrom);
    
        return View(t);
    }
    

    This all works exactly as expected with all the models created properly. The only problem that I can see happening is that you possibly aren’t passing the same property names back from the form. (by not using <%: Html.TextBoxFor(model => model.A.B.C.CName)%> for example)

    The models require parameterless constructors. But I’m sure you would have gotten an error about that – unless you’re consuming the error.

    So without more information about your project it will be hard to help as a basic setup produces expected results.

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

Sidebar

Related Questions

Perhaps I'm missing something with the concept of Extension Methods, but I cannot gain
Perhaps I am missing something, but I am just learning javascript. My understanding of
I'm perhaps being a bit lazy asking this here, but I'm just getting started
Perhaps not directly programming related, but definitely product / commercially related. And I can't
I have read (or perhaps heard from a colleague) that in .NET, TransactionScope can
Perhaps naively, I created a class (AdminDatabase) to handle connection to different MS-Access database
Perhaps I am not asking or searching for this correctly: I want to have
Perhaps this is a naive question. In my understanding, ASP.NET MVC cannot work with
Perhaps my question is similar in nature to this one: Do you use design
Or perhaps this is a manual install only deal.

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.