我有一个 WCF 数据服务。我不能使用这种格式(长篇大论,中间的代理类)我正在尝试编写这个 LINQ 查询:
from w in je.Streets
where w.CityId == (int)cb_City.EditValue
select new
{
HebName = w.HebName,
EngName = w.EngName,
ID = w.StreetID
}).ToList();
像这样
ServiceEntities se = new ServiceEntities();
se.Streets.Where(s => s.CityId == (int)cb_City.EditValue).Select( ???????? ).ToList();
我没有成功,我得到
Error translating Linq expression to URI: Can only specify query options (orderby, where, take, skip) after last navigation.
有人可以帮忙吗???
谢谢