我收到以下异常:LINQ to Entities 无法识别“Int64 ToInt64(System.String)”方法,并且该方法无法转换为存储表达式。
我有 long.Parse(ProjectID.ToString()) 并且我看到建议是使用 Convert.ToInt64 但我仍然遇到相同的异常
string projID = ProjectFileID.ToString();
var d = (from f in context.FileInfo
where f.ID == Convert.ToInt64(projID)
select (f));