我有三张桌子
类别---->ID,名称
CategoryCertifications --->CategoryId,CertificationId
认证 ----->Id,Name,Summary
我想在视图页面中显示证书名称和摘要列表。
我试过这样
ViewBag.CategoryCertifications=from pd in db.categories join od in db.categorycertifications on pd.id equals od.CategoryId join ct in db.certifications on od.certificationId equals ct.id select new
{
ct.Name,ct.Summary
}).ToList();
在 ViewPage 我提到如下
var categories=(List<Certification>ViewBag.CategoryCertifications ?? new List<Certification>();
我在视图页面中收到以下错误
unable to cast object of type'system.collection.generic.list''[<>f_Anonymous type 2f'2[system.string,system.string]]' to type 'system.collection.generic.list' '[cn.models.Certification]'
谢谢提前..