LINQ, can't join to string

后端 未结 3 548
暖寄归人
暖寄归人 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条回答
  •  难免孤独
    2020-11-30 13:19

    can't include the string.Join() in the initial projection, because the LINQ translator doesn't support it. Can I write a custom translator for it?

提交回复
热议问题