在 linq 中使用 equals 关键字

发布于 2024-10-14 18:56:28 字数 516 浏览 1 评论 0原文

可能的重复:
Lambda 表达式:== 与 .Equals()

您好,

我经常使用关键字 Equals比较变量和其他东西。

但当

wines = wines.Where(d => d.Region.Equals(paramRegion)).ToList();

数据区域为 NULL 时在运行时返回错误

我必须使用代码

wines = wines.Where(d => d.Region == paramRegion).ToList();

来消除错误。

有什么想法为什么会引发错误吗?

谢谢。

Possible Duplicate:
Lambda Expression: == vs. .Equals()

Hi,

I use a lot the keyword Equals to compare variables and other stuff.

but

wines = wines.Where(d => d.Region.Equals(paramRegion)).ToList();

return an error at runtime when in the data Region is NULL

I had to use the code

wines = wines.Where(d => d.Region == paramRegion).ToList();

to get rid of the error.

Any ideas why this raises an error?

Thanks.

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

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

发布评论

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

评论(3

时光无声 2024-10-21 18:56:28

您不能使用空对象引用调用实例方法。在调用 Region 的实例方法之前,您应该检查 Region 是否不为 null。

wines = wines.Where(d => d.Region != null && d.Region.Equals(paramRegion)).ToList();

d.Region == paramRegion (很可能)扩展为 object.Equals(d.Region, paramRegion) 并且该静态方法确实检查参数是否为 null 或不是在调用 Equals() 方法之前。

如果您知道 paramRegion 不能为空,您还可以以不同的顺序编写条件。

Debug.Assert(paramRegion != null);
wines = wines.Where(d => paramRegion.Equals(d.Region)).ToList();

You cannot call instance methods with null object reference. You should check that the Region is not null before calling its instance methods.

wines = wines.Where(d => d.Region != null && d.Region.Equals(paramRegion)).ToList();

The d.Region == paramRegion is (most likely) expanded to object.Equals(d.Region, paramRegion) and that static method does check whether the parameters are null or not before calling the Equals() method.

You can also write the condition in different order if you know that the paramRegion cannot be null.

Debug.Assert(paramRegion != null);
wines = wines.Where(d => paramRegion.Equals(d.Region)).ToList();
述情 2024-10-21 18:56:28

基本上,如果

d.Region == null

任何方法调用,这里的 Equals(...) 都会引发异常,因为它尚未初始化。

Basically if

d.Region == null

then any method call, here it's Equals(...) on that will raise an exception since it's not initialized.

别靠近我心 2024-10-21 18:56:28

使用可以使用:

paramRegion.Equals(d.Region)

Use can use:

paramRegion.Equals(d.Region)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文