ビューにバインドしている一般的なリスト プロパティがあります。問題は、ビューにいくつかの値を入力した後にデータを投稿すると、ページが更新され、ビューに値が保持されないことです。また、Html.ValidationMessage
その特定のフィールドに追加しようとすると、エラーが発生します
"The value 'System.Collections.Generic.List`1[<name of the class>]' is invalid"
私のコードは次のようになります、 モデル
public List<Chart> Charts
{
get
{
return _repository.GetCharts(Convert.ToInt32(this.Template_Id));
}
set{}
}
実際のクラス
public class Chart
{
public string ChartDisplayText { get; set; }
}
Chart クラスのプロパティは、View に値を入力する場所です