I have a an ASP.NET MVC2 application, with Linq2SQL, that updates a database without using the UpdateModel. Is it still possible to trigger validation without using UpdateModel?
I have a an ASP.NET MVC2 application, with Linq2SQL, that updates a database without
Share
Validation is built into the default model binder. So there is no need to call UpdateModel or anything else to trigger the validation.