LINQ where子句疑问
我在 Linq 中尝试了一个 where 子句来获取有关 User
的详细信息,这些 User
是那些 Active
并且 AllowLogin
也是如此。
那么如何将表值(均为布尔值)与 true 或 false 进行比较?
I have tried one where clause in Linq to get details about User
s those who are Active
and AllowLogin
is also true.
So how can I compare the table values (both are boolean values) with true or false?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用类似的内容:
或者,您可以编写相同的查询而不使用查询表达式:
Just use something like:
Alternatively, you can write the same query without a query expression: