当前位置:  开发笔记 > 编程语言 > 正文

C#等效于SQL Server中的IsNull()函数

如何解决《C#等效于SQLServer中的IsNull()函数》经验,为你挑选了3个好方法。

在SQL Server中,您可以使用该IsNull()函数检查值是否为null,如果是,则返回另一个值.现在我想知道C#中是否有类似的东西.

例如,我想做类似的事情:

myNewValue = IsNull(myValue, new MyValue());

代替:

if (myValue == null)
  myValue = new MyValue();
myNewValue = myValue;

谢谢.



1> Kent Boogaar..:

它被称为null coalescing(??)运算符:

myNewValue = myValue ?? new MyValue();


我试图使用null-coalescing运算符,但一直得到错误*运算符'??' 不能应用于'bool'类型的操作数?和'int'*.该错误具有误导性.问题是我试图在右侧操作数位置将一个int赋给一个布尔变量.我不得不改变`this.BinaryExists = vModel.BinaryExists ?? 0;`到`this.BinaryExists = vModel.BinaryExists ?? 假;`.

2> Robert Rossn..:

遗憾的是,没有相当于与DBNull一起使用的null合并运算符; 为此,您需要使用三元运算符:

newValue = (oldValue is DBNull) ? null : oldValue;


Nitpick:我知道很多地方都把它称为三元运算符.目前恰好只有一个三元运算符,但这是它的一个属性,而不是它的名字.它确实是条件运算符.如果C#获得另一个三元运算符,那么会有很多令人困惑的书籍.

3> 小智..:
public static T isNull(this T v1, T defaultValue)
{
    return v1 == null ? defaultValue : v1;
}

myValue.isNull(new MyValue())

推荐阅读
郑谊099_448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有