带有的 Lambda 表达式和 System.Nullable

发布于 2024-11-18 20:03:57 字数 509 浏览 3 评论 0原文

这无法编译:

void Foo()
{
    using (var db = new BarDataContext(ConnectionString))
    {
        // baz is type 'bool'
        // bazNullable is type 'System.Nullable<bool>'
        var list = db.Bars.Where(p => p.baz && p.bazNullable); // Compiler: 
            // Cannot apply operator '&&' to operands of type
            // 'System.Nullable<bool> and 'bool'
    }
}

我是否真的必须通过两次运行来完成此操作,首先使用 as 条件,然后使用可为空条件运行该列表,或者是否有更好的干净平滑的最佳实践方法来执行此操作?

This can't compile:

void Foo()
{
    using (var db = new BarDataContext(ConnectionString))
    {
        // baz is type 'bool'
        // bazNullable is type 'System.Nullable<bool>'
        var list = db.Bars.Where(p => p.baz && p.bazNullable); // Compiler: 
            // Cannot apply operator '&&' to operands of type
            // 'System.Nullable<bool> and 'bool'
    }
}

Do I really have to make this through two runs, where I first use the as condition and then run through that list with the nullable conditions, or is there a better clean smooth best practice way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

梦情居士 2024-11-25 20:03:57
p.bazNullable.GetValueOrDefault()
p.bazNullable.GetValueOrDefault()
靖瑶 2024-11-25 20:03:57

像这样的东西吗?

 db.Bars.Where(p => p.baz && p.bazNullable.HasValue && p.bazNullable.Value);

我不知道Linq-to-Sql是否可以处理它。

Something like this?

 db.Bars.Where(p => p.baz && p.bazNullable.HasValue && p.bazNullable.Value);

I don't know if Linq-to-Sql can handle it.

绝不服输 2024-11-25 20:03:57

这里有两个问题:

由于某种原因,可空类型不支持短路 && 。 (相关为什么没有解除短路运算符`bool?`?)

第二个是即使 C# 支持,你的代码仍然没有意义。 Where 需要 bool 作为条件的结果类型,而不是 bool?。因此,您需要决定如何处理 baz==truebazNullable==null 的情况。

这会导致 p.baz && (p.bazNullable==true)p.baz && (p.bazNullable!=false) 取决于你想要的。

或者p.baz && (p.bazNullable??false)p.baz && (p.bazNullable??true)

There are two issues here:

The shortcircuiting && is not supported on nullable types for some reason. (Related Why are there no lifted short-circuiting operators on `bool?`?)

The second is that even if it were supported by C#, your code still makes no sense. Where needs a bool as result type of your condition, not a bool?. So you need to decide how the case where baz==true and bazNullable==null should be treated.

This leads to either p.baz && (p.bazNullable==true) or p.baz && (p.bazNullable!=false) depending on what you want.

Or alternatively p.baz && (p.bazNullable??false) or p.baz && (p.bazNullable??true)

被翻牌 2024-11-25 20:03:57

您正在尝试应用逻辑 &&对可为空布尔值的操作。

如果您确定 p.bazNullable 不为 null,则可以尝试

var list = db.Bars.Where(p => p.baz && p.bazNullable.Value);

,或者如果 null 值等于 false,则尝试

var list = db.Bars.Where(p => p.baz && p.bazNullable.ValueOrDefault(false));

You're trying to apply a logical && operation to a nullable bool.

If you are sure that p.bazNullable is not null, then you can try

var list = db.Bars.Where(p => p.baz && p.bazNullable.Value);

or if a null value equates to false, then try

var list = db.Bars.Where(p => p.baz && p.bazNullable.ValueOrDefault(false));
不羁少年 2024-11-25 20:03:57

你可以这样做:

var list = db.Bars.Where(p => p.baz && p.bazNullable != null && p.bazNullable == true);

you could just do:

var list = db.Bars.Where(p => p.baz && p.bazNullable != null && p.bazNullable == true);
撑一把青伞 2024-11-25 20:03:57

使用:

  var list = db.Bars.Where(p => p.baz && p.bazNullable.Value);

要处理空异常,请使用:

  var list = db.Bars.Where(p => p.baz && p.bazNullable != null && p.bazNullable.Value);

use:

  var list = db.Bars.Where(p => p.baz && p.bazNullable.Value);

To handle null exceptions use:

  var list = db.Bars.Where(p => p.baz && p.bazNullable != null && p.bazNullable.Value);
美人如玉 2024-11-25 20:03:57

这个怎么样

Where(p => p.baz && (p.bazNullable ?? false));

或者

Where(p => p.baz && (p.bazNullable ==null ? false : p.bazNullable.Value));

How about this

Where(p => p.baz && (p.bazNullable ?? false));

OR

Where(p => p.baz && (p.bazNullable ==null ? false : p.bazNullable.Value));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文