How do you use the new ModelBinder classes in ASP.NET MVC Preview 5 - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T20:50:57Zhttp://stackoverflow.com/feeds/question/34709http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/34709/how-do-you-use-the-new-modelbinder-classes-in-asp-net-mvc-preview-51How do you use the new ModelBinder classes in ASP.NET MVC Preview 5Joseph Kingry2008-08-29T16:49:47Z2008-09-03T02:31:57Z
<p>You'll notice that Preview 5 includes the following in their release notes:</p>
<blockquote>
<p>Added support for custom model binders. Custom binders allow you to define complex types as parameters to an action method. To use this feature, mark the complex type or the parameter declaration with [ModelBinder(…)].</p>
</blockquote>
<p>So how do you go about actually using this facility so that I can have something like this work in my Controller:</p>
<pre><code>public ActionResult Insert(Contact contact)
{
if (this.ViewData.ModelState.IsValid)
{
this.contactService.SaveContact(contact);
return this.RedirectToAction("Details", new { id = contact.ID}
}
}
</code></pre>
http://stackoverflow.com/questions/34709/how-do-you-use-the-new-modelbinder-classes-in-asp-net-mvc-preview-5/34725#347252Answer by Joseph Kingry for How do you use the new ModelBinder classes in ASP.NET MVC Preview 5Joseph Kingry2008-08-29T16:55:37Z2008-08-29T16:55:37Z<p>Well I looked into this. ASP.NET provides a common location for registering the implementation of IControlBinders. They also have the basics of this working via the new Controller.UpdateModel method. </p>
<p>So I essentially combined these two concepts by creating an implementation of IModelBinder that does the same thing as Controller.UpdateModel for all public properties of the modelClass.</p>
<pre><code>public class ModelBinder : IModelBinder
{
public object GetValue(ControllerContext controllerContext, string modelName, Type modelType, ModelStateDictionary modelState)
{
object model = Activator.CreateInstance(modelType);
PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(model);
foreach (PropertyDescriptor descriptor in properties)
{
string key = modelName + "." + descriptor.Name;
object value = ModelBinders.GetBinder(descriptor.PropertyType).GetValue(controllerContext, key, descriptor.PropertyType, modelState);
if (value != null)
{
try
{
descriptor.SetValue(model, value);
continue;
}
catch
{
string errorMessage = String.Format("The value '{0}' is invalid for property '{1}'.", value, key);
string attemptedValue = Convert.ToString(value);
modelState.AddModelError(key, attemptedValue, errorMessage);
}
}
}
return model;
}
}
</code></pre>
<p>In your Global.asax.cs you'd need to add something like this:</p>
<pre><code> protected void Application_Start()
{
ModelBinders.Binders.Add(typeof(Contact), new ModelBinder());
</code></pre>
http://stackoverflow.com/questions/34709/how-do-you-use-the-new-modelbinder-classes-in-asp-net-mvc-preview-5/41078#410780Answer by Matt Hinze for How do you use the new ModelBinder classes in ASP.NET MVC Preview 5Matt Hinze2008-09-03T02:31:57Z2008-09-03T02:31:57Z<p><a href="http://weblogs.asp.net/scottgu/archive/2008/09/02/asp-net-mvc-preview-5-and-form-posting-scenarios.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2008/09/02/asp-net-mvc-preview-5-and-form-posting-scenarios.aspx</a></p>