damienbod / AspNetCoreLocalization

Localization.SqlLocalizer & ASP.NET Core MVC Localization Examples
http://damienbod.com/2015/10/21/asp-net-5-mvc-6-localization/
MIT License
251 stars 101 forks source link

Add example of Data Annotations with SQL Localization #10

Closed damienbod closed 8 years ago

damienbod commented 8 years ago

The Box class now works with SQL

  [Required(ErrorMessage = "BoxLengthRequired")]
  [Range(1.0, 100.0, ErrorMessage = "BoxLengthRange")]
  public double Length { get; set; }