如果我使用lambda表達式像下面C#Lambda表達式幫助
// assume sch_id is a property of the entity Schedules
public void GetRecord(int id)
{
_myentity.Schedules.Where(x => x.sch_id == id));
}
我假設(儘管未測試),我可以重寫,使用使用的東西一個匿名內聯函數像
_jve.Schedules.Where(delegate(Models.Schedules x) { return x.sch_id == id; });
我的問題是,我將如何重寫,在一個正常的(非內聯)功能,仍然通過ID參數。
ID不是封閉自己;它只是在關閉中存儲的狀態。 – 2009-10-29 17:52:28