我正在Windows Azure Web角色上運行此查詢,並且需要獲取相關的實體集,但我的lambda表達式似乎沒有工作。在查詢中使用lambda表達式
var query = from p in applicationsContext.Programs.Expand(p => p.Campus)
where p.ProgramId == Int32.Parse(programsList.SelectedValue)
select p;
我使用System.Linq
和System.Data.Entities
了,但是lambda表達式(p => p.Campus)
導致錯誤:
Cannot convert lambda expression to type string because it is not a delegate type
任何想法,爲什麼這是行不通的?
編輯:Intellisence似乎也不認可lambda表達式中的'p',這可能是問題的一部分。
展開預計刺,不是委託。也許只是「校園」會起作用? – jessehouwing
你可以分享你正在使用的教程嗎? – jessehouwing