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.