【发布时间】:2011-08-19 16:42:39
【问题描述】:
我正在使用IQueryable<T> 接口。
如何将下面的sql语句翻译成IQueryable?
select * from customer
where joindate > DateTime.Now and
(customertype = 'system' or customerstatus = 'active') and
customerlocation = 'europe'
【问题讨论】:
标签: c# linq linq-to-sql iqueryable