LINQ, can't join to string

后端 未结 3 547
暖寄归人
暖寄归人 2020-11-30 12:41

I have a list of users, each user has list of questions. In my model list of questions should be in string via comma. I try:

public List

        
3条回答
  •  旧时难觅i
    2020-11-30 13:21

    I would suggest doing the string.Join operation locally instead using AsEnumerable:

    var q = from i in _dbContext.Users
            where i.UserId != null
            select new
            {
                FirstName = i.FirstName,
                LastName = i.LastName,
                Question4Parts = _dbContext.MultipleQuestions
                                           .Where(a => a.MultipleQuestionType.KEY == 
                                                       MultipleQuestionKeys.BENEFITS)
                                           .Select(a => a.Question)
            };
    
    return q.AsEnumerable()
            .Select(x => new ITW2012Mobile.ViewModels.AdminSurveyReportModel
                         {
                             FirstName = x.FirstName,
                             LastName = x.LastName,
                             Question4 = string.Join(", ", x.Question4Parts)
                         })
            .ToList();
    

提交回复
热议问题