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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T11:12:26+00:00 2026-05-18T11:12:26+00:00

This is more like a conceptual question. When to use Model Binding (in ASP.NET

  • 0

This is more like a conceptual question. When to use Model Binding (in ASP.NET MVC Framework) and when to inject objects using IoC (lets say Autofac here) ?

One specific scenario is like lets say, I have the following action method

public ActionResult EditProfile(string UserId)
{
    // get user object from repository using the the UserId
    // edit profile
    // save changes
    // return feedback
}

In the above scenario, is it possible to inject a user object to action method such that it automatically gets the user object using the UserId ? The resulting signature being:

public ActionResult EditProfile(UserProfile userObj) //userObj injected *somehow* to automatically retreive the object from repo using UserId ? 

Sorry if it all doesn’t makes sense. It`s my first time using IoC.

EDIT:

This is the way to do it > http://buildstarted.com/2010/09/12/custom-model-binders-in-mvc-3-with-imodelbinder/

  • 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-18T11:12:27+00:00Added an answer on May 18, 2026 at 11:12 am

    You can do what you need using a custom action filter. By overriding OnActionExecuting, we have access to the route data, and the action parameters of the action that will be executed. Given:

    public class BindUserProfileAttribute : ActionFilterAttribute
    {
      public override OnActionExecuting(FilterContext filterContext)
      {
        string id = (string)filterContext.RouteData.Values["UserId"];
        var model = new UserProfile { Id = id };
    
        filtextContext.ActionParameters["userObj"] = model;
      }
    }
    

    This attribute allows us to create the parameters that will be passed into the action, so we can load the user object at this point.

    [BindUserProfile]
    public ActionResult EditProfile(UserProfile userObj)
    {
    
    }
    

    You’ll probably need to get specific with your routes:

    routes.MapRoute(
      "EditProfile",
      "Account/EditProfile/{UserId}",
      new { controller = "Account", action = "EditProfile" });
    

    In MVC3 we get access to the new IDepedencyResolver interface, which allows us to perform IoC/SL using whatever IoC container or service locator we want, so we can push a service like a IUserProfileFactory into your filter, to then be able to create your UserProfile instance.

    Hope that helps?

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

Sidebar

Related Questions

I'm using openURL to send an email w/some links. The function looks like this:
I have a scrollable area that contains popup menus. Conceptually, something like this: <div
I have an array full of objects from the same class. I'd like to
The Context At the moment, I have a JTextArea that has been created like
What I am trying to do is really simple . I'd like to convert
I want to create this TableLayoutPanel (C# in WinForms - programatically created at runtime!)
I'm still learning C# and was surprised to find out that a List<T> is
have a table that dynamically generates text boxes in run time. I want to
I'm trying to work out in my head the best way to structure a
public interface ITaskProvider { T GetTask<T>(); } In the implementation of ITaskprovider below, as

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.