I'm having some problems with Model.IsValid. I am trying to create a model similar to this...

class Article {
  int Id {get; set;}
  string Title {get; set;}

  Category Category {get; set;}
}

class Category {
  int Id {get; set;}
  string Name {get; set;}

  IList<Articles> Articles {get; set;}
}

I would like that the Article Category can be null. However Model.IsValid is always false when the Category is null.

Any help appreciated.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Hmmm ... are you sure the Model.IsValid is false because of category being null? I am asking this since I don't see any 'required' data annotations in the Category property in your domain object. OR if it is indeed failing when binding on the Category then you might need to create a custom model binder which is where I think - more likely a guess - your error is happening.

link|improve this answer
Yeah, I'm not using any required. It's strange. I'll try a custom model binder. Thanks! – user10479 Dec 3 '10 at 19:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.