私には以下のようなカスタムクラスの学生がいます:
public class Student
{
public string Name {get;set;}
public string GuardianName {get;set;}
}
今、私は次のデータ構造で入ってくるデータを持っています
IList<Student> studInfo=new List<Student>();
このデータをビューバッグに入れました
Viewbag.db=studInfo;
ビューページで使用しようとすると
<table>
<thead>
<tr>
<td>Name</td>
<td>Guardian Name</td>
</tr>
</thead>
@foreach(var stud in ViewBag.db)
{
<tr>
<td>@stud.Name</td>
<td>@stud.GuardianName</td>
</tr>
}
</table>
エラーがあり、
Cannot implicitly convert type 'PuneUniversity.StudInfo.Student' to 'System.Collections.IEnumerable'
PuneUniversityは私の名前空間であり、StudInfoはアプリケーション名です。解決策を提案してください。前もって感謝します