How does DataAnnotationsModelBinder work with custom ViewModels? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T23:31:04Zhttp://stackoverflow.com/feeds/question/820468http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/820468/how-does-dataannotationsmodelbinder-work-with-custom-viewmodels3How does DataAnnotationsModelBinder work with custom ViewModels?Adrian Grigore2009-05-04T14:56:14Z2009-06-30T18:45:54Z
<p>Hi,</p>
<p>I'm trying to use the <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24471" rel="nofollow">DataAnnotationsModelBinder</a> in order to use Data Annotations for server-side validation in ASP.NET MVC. </p>
<p>Everything works fine as long as my ViewModel is just a simple class with immediate properties such as </p>
<pre><code>public class Foo
{
public int Bar {get;set;}
}
</code></pre>
<p>However, the DataAnnotationsModelBinder causes a NullReferenceException when trying to use a complex ViewModel, such as </p>
<pre><code>public class Foo
{
public class Baz
{
public int Bar {get;set;}
}
public Baz MyBazProperty {get;set;}
}
</code></pre>
<p>This is a big problem for views that render more than one linq entity because I really prefer using custom ViewModels that include several Linq entities instead of untyped ViewData arrays. </p>
<p>The DefaultModelBinder does not have this problem, so it seems like a bug in DataAnnotationsModelBinder. Does anyone know any workaround to this?</p>
<p><strong>Edit:</strong> A possible workaround is of course to expose the child object's properties in the ViewModel class like this:</p>
<p>public class Foo
{
private Baz myBazInstance;</p>
<pre><code> [Required]
public string ExposedBar
{
get { return MyBaz.Bar; }
set { MyBaz.Bar = value; }
}
public Baz MyBaz
{
get { return myBazInstance ?? (myBazInstance = new Baz()); }
set { myBazInstance = value; }
}
#region Nested type: Baz
public class Baz
{
[Required]
public string Bar { get; set; }
}
#endregion
}
#endregion
</code></pre>
<p>But I'd prefer not to have to write all this extra code. The DefaultModelBinder works fine with such hiearchies, so I suppose the DataAnnotationsModelBinder should as well. </p>
<p><strong>Second Edit:</strong> It looks like this is indeed a bug in DataAnnotationsModelBinder. However, there is hope this might be fixed before the next ASP.NET MVC framework version ships. See <a href="http://forums.asp.net/p/1418796/3139121.aspx#3139121" rel="nofollow">this forum thread</a> for more details. </p>
http://stackoverflow.com/questions/820468/how-does-dataannotationsmodelbinder-work-with-custom-viewmodels/864541#8645414Answer by Martijn Laarman for How does DataAnnotationsModelBinder work with custom ViewModels?Martijn Laarman2009-05-14T17:04:18Z2009-05-14T17:04:18Z<p>I faced the exact same issue today. Like yourself i dont tie my View directly to my Model but use an intermediate ViewDataModel class that holds an instance of the Model and any parameters / configurations i'd like to sent of to the view. </p>
<p>I ended up modifying <code>BindProperty</code> on the DataAnnotationsModelBinder to circumvent the NullReferenceException, and I personally didn't like Properties only being bound if they were valid (see reasons below).</p>
<pre><code>protected override void BindProperty(ControllerContext controllerContext,
ModelBindingContext bindingContext,
PropertyDescriptor propertyDescriptor) {
string fullPropertyKey = CreateSubPropertyName(bindingContext.ModelName, propertyDescriptor.Name);
// Only bind properties that are part of the request
if (bindingContext.ValueProvider.DoesAnyKeyHavePrefix(fullPropertyKey)) {
var innerContext = new ModelBindingContext() {
Model = propertyDescriptor.GetValue(bindingContext.Model),
ModelName = fullPropertyKey,
ModelState = bindingContext.ModelState,
ModelType = propertyDescriptor.PropertyType,
ValueProvider = bindingContext.ValueProvider
};
IModelBinder binder = Binders.GetBinder(propertyDescriptor.PropertyType);
object newPropertyValue = ConvertValue(propertyDescriptor, binder.BindModel(controllerContext, innerContext));
ModelState modelState = bindingContext.ModelState[fullPropertyKey];
if (modelState == null)
{
var keys = bindingContext.ValueProvider.FindKeysWithPrefix(fullPropertyKey);
if (keys != null && keys.Count() > 0)
modelState = bindingContext.ModelState[keys.First().Key];
}
// Only validate and bind if the property itself has no errors
//if (modelState.Errors.Count == 0) {
SetProperty(controllerContext, bindingContext, propertyDescriptor, newPropertyValue);
if (OnPropertyValidating(controllerContext, bindingContext, propertyDescriptor, newPropertyValue)) {
OnPropertyValidated(controllerContext, bindingContext, propertyDescriptor, newPropertyValue);
}
//}
// There was an error getting the value from the binder, which was probably a format
// exception (meaning, the data wasn't appropriate for the field)
if (modelState.Errors.Count != 0) {
foreach (var error in modelState.Errors.Where(err => err.ErrorMessage == "" && err.Exception != null).ToList()) {
for (var exception = error.Exception; exception != null; exception = exception.InnerException) {
if (exception is FormatException) {
string displayName = GetDisplayName(propertyDescriptor);
string errorMessage = InvalidValueFormatter(propertyDescriptor, modelState.Value.AttemptedValue, displayName);
modelState.Errors.Remove(error);
modelState.Errors.Add(errorMessage);
break;
}
}
}
}
}
}
</code></pre>
<p>I also modified it so that it <strong>always</strong> binds the data on the property no matter if its valid or not. This way i can just pass the model back to the view withouth invalid properties being reset to null.</p>
<p><strong>Controller Excerpt</strong></p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(ProfileViewDataModel model)
{
FormCollection form = new FormCollection(this.Request.Form);
wsPerson service = new wsPerson();
Person newPerson = service.Select(1, -1);
if (ModelState.IsValid && TryUpdateModel<IPersonBindable>(newPerson, "Person", form.ToValueProvider()))
{
//call wsPerson.save(newPerson);
}
return View(model); //model.Person is always bound no null properties (unless they were null to begin with)
}
</code></pre>
<p>My Model class (Person) comes from a webservice so i can't put attributes on them directly, the way i solved this is as followed:</p>
<p><strong>Example with nested DataAnnotations</strong></p>
<pre><code>[Validation.MetadataType(typeof(PersonValidation))]
public partial class Person : IPersonBindable { } //force partial.
public class PersonValidation
{
[Validation.Immutable]
public int Id { get; set; }
[Validation.Required]
public string FirstName { get; set; }
[Validation.StringLength(35)]
[Validation.Required]
public string LastName { get; set; }
CategoryItemNullable NearestGeographicRegion { get; set; }
}
[Validation.MetadataType(typeof(CategoryItemNullableValidation))]
public partial class CategoryItemNullable { }
public class CategoryItemNullableValidation
{
[Validation.Required]
public string Text { get; set; }
[Validation.Range(1,10)]
public string Value { get; set; }
}
</code></pre>
<p>Now if if I bind a form field to <code>[ViewDataModel.]Person.NearestGeographicRegion.Text</code> & <code>[ViewDataModel.]Person.NearestGeographicRegion.Value</code> the ModelState starts validating them correctly and DataAnnotationsModelBinder binds them correctly as well.</p>
<p>This answer is not definitive its the product of scratching my head this afternoon.
It's not been properly tested, eventhough it passed the unit tests in <a href="http://bradwilson.typepad.com/blog/2009/04/dataannotations-and-aspnet-mvc.html" rel="nofollow">the project</a> Brian Wilson started and most of my own limited testing. For true closure on this matter I would love to hear <a href="http://bradwilson.typepad.com/blog/2009/04/dataannotations-and-aspnet-mvc.html" rel="nofollow">Brad Wilson</a> thoughts on this solution.</p>
http://stackoverflow.com/questions/820468/how-does-dataannotationsmodelbinder-work-with-custom-viewmodels/991977#9919773Answer by Brad Wilson for How does DataAnnotationsModelBinder work with custom ViewModels?Brad Wilson2009-06-14T02:11:53Z2009-06-14T02:11:53Z<p>The fix for this issue is simple, as Martijn has noted.</p>
<p>In the BindProperty method, you will find this line of code:</p>
<pre><code>if (modelState.Errors.Count == 0) {
</code></pre>
<p>It should be changed to:</p>
<pre><code>if (modelState == null || modelState.Errors.Count == 0) {
</code></pre>
<p>We are intending to include DataAnnotations support in MVC 2, which will include the DataAnnotationsModelBinder. This feature will be part of the first CTP.</p>