为什么在视图页面';对象';不包含';surveyTitle';
本文关键字:包含 surveyTitle 对象 为什么 视图 | 更新日期: 2023-09-27 18:21:48
这是我下面的代码:
var data = (from s in surveys
join sp in sps on s.Id equals sp.SurveyId
select new
{
surveyId = s.Id,
surveyTitle = s.Title,
surveyStatus = sp.Status
}).GroupBy(g=>g.surveyId).Select(x=>x.First());
这个代码出了什么问题?
据我所知,您需要为"array"命名
select new SomeName {
surveyId = s.Id,
surveyTitle = s.Title,
surveyStatus = sp.Status
}