在 linq 中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不能使用空对象引用调用实例方法。在调用 Region 的实例方法之前,您应该检查 Region 是否不为 null。
d.Region == paramRegion
(很可能)扩展为object.Equals(d.Region, paramRegion)
并且该静态方法确实检查参数是否为 null 或不是在调用 Equals() 方法之前。如果您知道
paramRegion
不能为空,您还可以以不同的顺序编写条件。You cannot call instance methods with null object reference. You should check that the Region is not null before calling its instance methods.
The
d.Region == paramRegion
is (most likely) expanded toobject.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.基本上,如果
任何方法调用,这里的 Equals(...) 都会引发异常,因为它尚未初始化。
Basically if
then any method call, here it's Equals(...) on that will raise an exception since it's not initialized.
使用可以使用:
Use can use: