我正在使用这样的 LINQ lambda 表达式:
int Value = 1;
qryContent objContentLine;
using (Entities db = new Entities())
{
objContentLine = (from q in db.qryContents
where q.LineID == Value
orderby q.RowID descending
select q).FirstOrDefault();
}
但是,我收到以下错误:
无法将 lambda 表达式转换为类型“字符串”,因为它不是委托类型