如何连接Entity Framework 4中的字符串我有一个列的数据,我想保存为一个字符串逗号分隔的字符串,如“value1,value2,value3”
在EF4中是否有方法或操作符做到这一点?
示例:让我说,我有两列水果和农场具有以下值:
在EF4中是否有方法或操作符做到这一点?
示例:让我说,我有两列水果和农场具有以下值:
>苹果
>香蕉
>草莓
如果我这样做
var dataSource = this.context .Farms .Select(f => new { f.Id,Fruits = string.Join(",",f.Fruits) });
当然我会得到这个错误
LINQ to Entities does not recognize the method ‘System.String Join(System.String,System.Collections.Generic.IEnumerable`1[System.String])’ method,and this method cannot be translated into a store expression.
有没有解决这个问题?