我有2张桌子,上面有一个问题和一个子问题。我几乎只想获取所有父级问题和所有子级问题,然后将它们放在一起作为列表,以服务于前端。我有此代码
我厌倦了使它们都成为列表或Ienumberable都不起作用
IEnumerable<KPMProjectChecklistParentQuestion> ParentQuestions = DataServiceLocator.GetKPMProjectChecklistParentQuestions_DAO().GetAll(Context).Where(x => x.Active);
IEnumerable<KPMProjectChecklistChildQuestion> ChildQuestions = DataServiceLocator.GetKPMProjectChecklistChildQuestions_DAO().GetAll(Context).Where(x => x.Active);
ViewBag.Questions = ParentQuestions.AddRange(ChildQuestions);
我只希望ViewBag.Questions同时具有父级和子级问题。