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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T11:10:56+00:00 2026-05-23T11:10:56+00:00

I have the following viewmodels: public class ViewModel1{ public string Foo{get;set;} } public class

  • 0

I have the following viewmodels:

public class ViewModel1{
    public string Foo{get;set;}
}

public class ViewModel2{
     public ViewModel1 Bar{get;set;}
}

And the following controller:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        var model = new ViewModel2();
        return View(model);
    }

    [HttpPost]
    public ActionResult Index(ViewModel2 model)
    {
        return View(model);
    }
}

And I have a custom model binder configured as:

 ModelBinders.Binders.Add(typeof(ViewModel1), new ViewModel1ModelBinder());

However – the binder never gets called. Is this because it is nested? is the framework clever enough to see there is a child viewmodel of the required type to match this binder?

[edit]

here is the code for the model binder (though it never reaches this point):

protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext, Type modelType)
        {
            var typeValue = bindingContext.ValueProvider.GetValue(bindingContext.ModelName + ".TableInputModelTypeName");
            string typeAndNS = modelType.Namespace + "." + typeValue.AttemptedValue;
            var type = Type.GetType(typeAndNS, true);
            var model = Activator.CreateInstance(type);
            bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, type);
            return model;
        }

w://

  • 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-23T11:10:57+00:00Added an answer on May 23, 2026 at 11:10 am

    This should work, at least it does work for me. I’ve taken the exact same code you have shown. The only thing that you haven’t shown is the view.

    So I’ve tested with the following:

    ~/Views/Home/Index.cshtml:

    @model ViewModel2
    @using (Html.BeginForm())
    {
        @Html.EditorFor(x => x.Bar)
        <input type="submit" value="OK" />
    }
    

    and the editor template (~/Views/Home/EditorTemplates/ViewModel1.cshtml):

    @model ViewModel1
    @Html.Hidden("TableInputModelTypeName", "foobar")
    @Html.EditorFor(x => x.Foo)
    

    When I submitted the form the custom model binder was hit as expected.

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

Sidebar

Related Questions

I have following ViewModel: public class Bulletin1ViewModel { [Required] public String NumberDelegations { get;
I have the following ViewModel public class ShowQuestionsViewModel { public String CategoryName { get;
I have 2 properties in my ViewModel class ViewModel1 { Dictonary<int, string> PossibleValues {get;set;}//key/value
I have the following ViewModel: public class AllQuestionsInCategoriesViewModel { public string Category_Name { get;
I Have following code: Controller: public ActionResult Step1() { return View(); } [AcceptVerbs(HttpVerbs.Post)] public
I have the following DTO definition:- [DataContract] public class AddProductDTO { [DataMember] public string
I have the following model: public class Product { public int Id { get;
I have a ViewModel as such: public class EmployeeViewModel { Employees employee{ get; set;
I have the following action/controller on MVC3: [HttpPost] public ActionResult AX_AddItemResponse(ItemResponsesVM response) { return
I have following ViewModel: public IEnumerable<SelectListItem> SelectAdminsInGroup { get; set; } public IEnumerable<SelectListItem> SelectAdminsNotInGroup

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.