I\'m using ASP.NET MVC 3 code-first and I have added validation data annotations to my models. Here\'s an example model:
public class Product { public i
I found this to work and do precisely as expected.. showing the ValidationSummary for a freshly retrieved object on a GET action method... prior to any POST
Me.TryValidateModel(MyCompany.OrderModel)