我有一張表,其中包含我想要分析的頁面列表。其中一個字段是URL
,毫不意外包含pagehit的URL。這包括任何查詢字符串,例如http://foo.bar/default.aspx?test=1234
將字符串拆分爲LINQ to Entities
我想去掉從該表的查詢字符串我的分析和思考以下簡單的字符串拆分將工作:
var pageHits = from p in context.Pagehits
let URL = p.URL.Split('?')[0]
select p;
但是我得到的錯誤: The LINQ expression node type 'ArrayIndex' is not supported in LINQ to Entities.
鑑於該表是相當沉重什麼是最好的方式來返回沒有查詢字符串的網址?
編輯: 我可以,如果我叫.ToList
它的工作,但似乎計算過度