Is it possible to convert DataType.EmailAddress to normal email format. Not sure, but in my opinion everything worked well before.
Now:
    [Display(Name="E-mail")]
    [Required(ErrorMessage = "Введите E-mail")] 
    [EmailAddress(ErrorMessage ="The Email field is not a valid e-mail address.")]
    public string Email { get; set; }
Validation will miss the e-mail without a zone.
I know I can fix it with regex. But maybe there is possibility to fix the attribute?


 
    