モデルに関連付けられたビューを持っています:
@model IEnumerable<AJA.Models.DB.Article>
私がやりたいのは、モデルをループしていくつかのロジックを実行することだけです。
@foreach (var item in Model)
{
var article = item.article1;
if (article.Length > 500)
{
article = article.Substring(0, 500) + "...";
}
ただし、ビューを実行すると、エラー:
exception: System.NullReferenceException: The reference of the object is not defined
to an instance of the object.
一人でやれば@Html.DisplayFor(modelItem => item.article1)
記事はOKだけど、ビジネスロジックは事前にやっておきたい。
どうしたの ?