複数のレコードを更新していますが、送信ボタンをクリックするとエラーが発生します。これは、コントローラーが NULL を受け取り、36 行目で次のエラーを報告することを示しています。以下は、コントローラー、ビュー、およびモデルのコードです。
オブジェクト参照がオブジェクト インスタンスに設定されていません。説明:
現在の Web 要求の実行中に未処理の例外が発生しました。エラーの詳細とコード内のどこでエラーが発生したかについては、スタック トレースを確認してください。例外の詳細: System.NullReferenceException: オブジェクト参照がオブジェクトのインスタンスに設定されていません。
Source Error:
Line 34: public ActionResult UpdateAll(ICollection<Test0> test0s)
Line 35: {
Line 36: foreach (var tst in test0s)
Line 37: {
Line 38: if (ModelState.IsValid)
Source File: c:\users\rsc_vok\documents\visual studio 2010\Projects\MvcTest0\MvcTest0\Controllers\Test0Controller.cs Line: 36
モデルは次のとおりです。
namespace MvcTest0.Models
{
public class Test0
{
public int id { get; set; }
public int SectnID { get; set; }
public string Section { get; set; }
public string Comment { get; set; }
}
public class Test0DBContext : DbContext
{
public DbSet<Test0> Test0s { get; set; }
}
}
そして、ここに私のコントローラコードがあります:
public ActionResult UpdateAll(int id=0)
{
int sectnid = id;
List<Test0> records = db.Test0s.ToList();
var Sectnrecord = from r in records
where r.SectnID == sectnid
select r;
return View(Sectnrecord.ToList());
}
[HttpPost]
public ActionResult UpdateAll(ICollection<Test0> test0s)
{
foreach (var tst in test0s)
{
if (ModelState.IsValid)
{
db.Entry(tst).State = EntityState.Modified;
}
}
db.SaveChanges();
return View(test0s);
}
そして、これが私の見解です
@model IEnumerable<MvcTest0.Models.Test0>
@{
ViewBag.Title = "UpdateAll";
}
<script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
@using (Html.BeginForm())
{
@Html.ValidationSummary(true)
var sectnHeader = new String[10];
sectnHeader[0] = "A. QUALITY";
sectnHeader[1] = "B. VR REFERRAL";
var items = Model.ToArray();
var sections = 1;
for (var sectnLoop = 0; sectnLoop < sections; sectnLoop++)
{
<table>
<tr>
<td>
<b>@(sectnHeader[sectnLoop])</b>
</td>
</tr>
</table>
<table>
<tr>
<th>SectnID</th>
<th>Section</th>
<th>Comment</th>
</tr>
</table>
for (var i = sectnLoop * 2; i < sectnLoop * 2 + 2; i++)
{
var sctnid = "sectnname" + i;
@Html.HiddenFor(m => items[i].id)
@Html.HiddenFor(m => items[i].SectnID)
<table>
<tr>
<td>
@Html.DisplayFor(m => items[i].SectnID)
</td>
<td>
@Html.EditorFor(m => items[i].Section)
@Html.ValidationMessageFor(m => items[i].Section)
</td>
<td>
@Html.EditorFor(m => items[i].Comment)
@Html.ValidationMessageFor(m => items[i].Comment)
</td>
</tr>
</table>
}
}
<p>
<input type="submit" value="Save" />
</p>
}