gpt4 book ai didi

c# - LINQ where子句疑惑

转载 作者:太空狗 更新时间:2023-10-30 00:06:46 25 4
gpt4 key购买 nike

我在 Linq 中尝试了一个 where 子句来获取有关 User 的详细信息那些是ActiveAllowLogin也是如此。

那么我怎样才能将表值(都是 bool 值)与 true 或 false 进行比较呢?

最佳答案

只需使用类似的东西:

var query = from user in context.Users
where user.Active && user.AllowLogin
select user;

或者,您可以在不使用查询表达式的情况下编写相同的查询:

var query = context.Users.Where(user => user.Active && user.AllowLogin);

关于c# - LINQ where子句疑惑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/406253/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com