我在我的代碼中調用下面的方法,但無法形成表達式樹,請建議。需要檢索表中的醫生名稱的詳細信息?
m1.FindSingleBy<Doctor_Details>(m1 => m1.Doctor_Name == "a");
public virtual T FindSingleBy<T>(Expression<Func<T , bool>> predicate) where T : class
{
if (predicate != null)
{
Dolphin_PatientEntities1 contxt = new Dolphin_PatientEntities1();
using (contxt)
{
return contxt.Set<T>().Where(predicate).SingleOrDefault();
}
}
else
{
throw new ArgumentNullException("Predicate value must be passed to FindSingleBy<T>.");
}
}
問題是? –
我倒下了這個問題,因爲它不包含代碼,沒有問題,並要求爲作者編寫代碼。 –