Localizing / Customizing Entity Framework and ASP.NET MVC 3
In most demos that you see that involve entity framework code first and ASP.NET MVC 3, localization is not mentioned. What if you want to make your data multi-language friendly? Here is a simple example: I want to have title column to be at most 30 characters in my entity: [StringLength(30)] public string Title …
Continue reading ‘Localizing / Customizing Entity Framework and ASP.NET MVC 3’ »