How do you use the new ModelBinder classes in ASP.NET MVC Preview 5 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T20:50:57Z http://stackoverflow.com/feeds/question/34709 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/34709/how-do-you-use-the-new-modelbinder-classes-in-asp-net-mvc-preview-5 1 How do you use the new ModelBinder classes in ASP.NET MVC Preview 5 Joseph Kingry 2008-08-29T16:49:47Z 2008-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#34725 2 Answer by Joseph Kingry for How do you use the new ModelBinder classes in ASP.NET MVC Preview 5 Joseph Kingry 2008-08-29T16:55:37Z 2008-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#41078 0 Answer by Matt Hinze for How do you use the new ModelBinder classes in ASP.NET MVC Preview 5 Matt Hinze 2008-09-03T02:31:57Z 2008-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>