Why is it that client validation is getting triggered saying that my Default Theme field is required even if I didn't specify a [Required] attribute in my model?

enter image description here

Model :

public class Site
{
    public int SiteId { get; set; }

    [Required(ErrorMessage = "*")]
    [LocalizedDisplayName("Title")]
    public string Title { get; set; }

    [Required(ErrorMessage = "*")]
    [LocalizedDisplayName("RootDirectory")]
    public string RootDirectory { get; set; }

    [LocalizedDisplayName("DefaultTheme")]
    public int DefaultThemeId { get; set; } // <-- No required attribute here

    [Required(ErrorMessage = "*")]
    [LocalizedDisplayName("ThemesDirectory")]
    public string ThemesDirectory { get; set; }

    public virtual Theme DefaultTheme { get; set; } // <-- No required attribute here
}

View :

@Html.DropDownListFor(x => x.DefaultThemeId,
new SelectList(ViewBag.Themes, "ThemeId", "Name"), string.Empty)

I am using Entity Framework 4 with ADO.NET Entity Data Model and mapping the entities to POCOs in my model.

link|improve this question

70% accept rate
feedback

1 Answer

up vote 5 down vote accepted

That's because ints have an implicit value. If you want it to have no value, change the type to a nullable int using int?

link|improve this answer
Man I feel stupid...that was it. Thank you very much! – Jason Feb 16 '11 at 0:36
2  
If you really want to leave it as int you can set DataAnnotationsModelValidatorProvider.AddImplicitRequiredAttributeForValueTypes to false in your Global.asax I'd recommend using the int? however. – Nigel Sampson Feb 16 '11 at 22:29
Thanks @Nigel. Searched for that all day! – Oskar Kjellin Sep 18 '11 at 20:49
feedback

Your Answer

 
or
required, but never shown

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