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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T00:14:22+00:00 2026-05-31T00:14:22+00:00

Consider an HTML form built in the following way: <select name=schoolType> @foreach (SchoolType schoolType

  • 0

Consider an HTML form built in the following way:

        <select name="schoolType">
            @foreach (SchoolType schoolType in Model.SchoolTypes)
            {
                <option value="@schoolType.Id">@schoolType.Name</option>
            }
        </select>

Now, SchoolType is a model class. It’s designed in my EDMX for Entity Framework.

In the above scenario, right now, my action method looks like this:

    public ActionResult CreateSchool(int schoolType)
    {
        ...
        SchoolType myType = container.SchoolTypeSet.FirstOrDefault(t => t.Id == schoolType);
        ...
    }

Would it be possible to program some kind of helper so that MVC would automatically know to convert the integer into a Model class with that ID, like the following action method signature?

    public ActionResult CreateSchool(SchoolType schoolType)
    {
        ...
    }
  • 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-31T00:14:23+00:00Added an answer on May 31, 2026 at 12:14 am

    You can use a ModelBinder to accomplish this:

    public ActionResult CreateSchool([ModelBinder(typeof(SchoolTypeBinder))] SchoolType schoolType)
    {
        ...
    }
    

    Where your Model Binder looks like:

    public class SchoolTypeBinder : IModelBinder
    {
        public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
        {
            SchoolType output = null;
    
            int id;
            ValueProviderResult parameter = bindingContext.ValueProvider.GetValue("id");
            if (parameter != null)
            {
                id = (int)parameter.ConvertTo(typeof(int));
                output = container.SchoolTypeSet.FirstOrDefault(t => t.Id == id);
            }
            return output;
        }
    }
    

    You can also associate binders with types globally at startup:

    protected void Application_Start()
    {
        ...
        ModelBinders.Binders.Add(typeof(SchoolType), new SchoolTypeBinder());
    }
    

    resulting in the nice, clean action you requested:

    public ActionResult CreateSchool(SchoolType schoolType)
    {
        ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please consider the following HTML: <input type='text' id='name'/> <option id='option'> <select value='1'>hi</select> <select value='2'>bye</select>
I have the following HTML <form id=create_form name=create_form action= method=post> <input name=type id=type value=individuel
Consider this HTML: <form id=MyForm> <input name=Input1/> </form> In Script# I do this: FormElement
Consider this HTML: <form id=MyForm> <input name=Input1/> </form> To get the form, I would
Based on: MVC Html.CheckBox and form submit issue Let's consider following example. View: <%
Consider the html <div id=one > <input type=radio value=x name=group > <input type=radio value=y
Consider the following HTML: <div class=foo id=obj> I should be changed red <div class=bar
Consider the following HTML snippet. The desired effect is to have a dropdown be
Consider the following html code: <div id='x'><div id='y'>Y content</div>X content</div> I'd like to extract
This problem is only in IE. Consider the following HTML: <html> <body> <div style='position:absolute;left:1em;right:1em;top:1em;bottom:1em;overflow:auto;>

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.