如何将以下 SQL 转换为 Linq?
我正在使用 IQueryable
接口。
如何将以下 sql 语句转换为 IQueryable
?
select * from customer
where joindate > DateTime.Now and
(customertype = 'system' or customerstatus = 'active') and
customerlocation = 'europe'
I am using IQueryable<T>
interface.
How can I translate the following sql statement to IQueryable
?
select * from customer
where joindate > DateTime.Now and
(customertype = 'system' or customerstatus = 'active') and
customerlocation = 'europe'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
像这样的事情:
有一个很好的工具,Linqer,它可以帮助您将 SQL 查询转换为 LINQ。当然,对于这种简单的情况来说,这有点过分了,但是如果您更熟悉 SQL,那么您当然可以考虑在繁重的查询中使用它。
您可以在这里找到它 LINQER。
Something like this :
There is a nice tool, Linqer, which can help you to convert SQL queries to LINQ. Of course for such simple cases it is overkill, but you can consider it for heavy queries of course if you are more familiar with SQL.
You can find it here LINQER.
我不记得 linq 是否会计算 DateTime.Now 所以我只是提前将其放入变量中。
I can't remember if linq will evaluate DateTime.Now so I just threw it into a variable ahead of time.
我更喜欢以下语法,但您也可以使用查询语法:
使用查询语法:
I pefer the following syntax but you could use query syntax as well:
Using query syntax: