我有一个自定义班级学生,如下所示:
public class Student
{
public string Name {get;set;}
public string GuardianName {get;set;}
}
现在,我有以下数据结构中的数据
IList<Student> studInfo=new List<Student>();
我已将此数据放入 viewbag
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 是应用程序名称。请建议我一个解决方案。提前致谢