私は、StudentIDとStudentNameの両方を主キーとして設定したStudentデータモデル(Entity Framework)を持っています。 StudentIDはInt型で、StudentNameはString型です。null参照例外エラー
私は強く型付けされたビューを作成し、しかし、私はそれを実行したときに、私は次のエラーを取得する:ここで
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error: Line 10: <tr> Line 11: <td> Line 12: <%= Html.Encode(item.StudentID) %>** Line 13: </td> Line 14: <td>
は私のコントローラのアクションである:ここで
public ActionResult Index()
{
ViewData.Model = student.StudentTable;
return View();
}
ビューです:
<%@ Page
Language="C#"
Inherits="System.Web.Mvc.ViewPage<IEnumerable<Student.Models.StudentTable>>" %>
<html>
<head runat="server">
</head>
<body>
<table>
<% foreach (var item in Model) { %>
<tr>
<td>
<%= Html.Encode(item.StudentID) %>
</td>
<td>
<%= Html.Encode(item.StudentName) %>
</td>
</tr>
<% } %>
</table>
</body>
</html>
コントローラアクションメソッドのコードを表示できますか? – brodie
@brodieはい私はそれを上に加えました – user793468
あなたはあなたの意見を見せてくれますか? – frennky