...または、MVCでEnterprise Library 5 VABを使用する最もクリーンな方法は何ですか?
私は現在、次のフォームを使用しています。
ActionResult Save(int id, FormCollection form)
{
SomeModel model = somehowgetbyid(id);
UpdateModel(model);
somehowvalidate(model);
if(ModelState.IsValid)
{
etc...
VABで装飾されたクラスはupdatemodelによって自動的に検証できますか、それともバリデーターを手動で取得して、その呼び出し後に検証できますか?それとももっと良い方法がありますか?