私はSubsonic 3 ActiveRecordアプローチを使用していて、データを投稿する点で最も効率的だったのは不思議でした。ここ2のシナリオは以下のとおりです。ASP.Net MVC FormCollection VS ModelBinding効率
I)
public ActionResult Edit(Person PostedItem)
{
Person p = new Person(PostedItem.ID);
p.Name = PostedItem.Name;
p.Update();
}
II)
public ActionResult Edit(FormCollection PostedItem)
{
Person p = new Person(PostedItem["ID"]);
p.Name = PostedItem["Name"];
p.Update();
}
私はFormCollectionがmodelbinding反映処理は、しかしへのよりよい行う必要はないとして、より効率的である想像強く型付けされたものを持っている。
別の方法がありますか?投稿されたデータを渡す編集パラメータに追加できるものはありますか?
ありがとうございました