2
var dd = (from dt in d
select new
{
dt.id,
dt.date,
dt.customerid,
dt.customer,
dt.Description,
dt.defect,
dt.address,
products = string.Join(",", dt.products)
}).ToList();
LINQ查詢
string.Join
沒有工作,錯誤的是
LINQ到實體無法識別方法 '
System.String Format(System.String, System.Object, System.Object)
'
我用谷歌搜索很多,並找不到任何其他解決方案。我想要做的是,dt.Products是一個數組,我想將它們連接在一起形成一個字符串。 Linq to Entities有可能嗎?