通过 BinaryOperator 检查 null
GroupOperator groupApplyOn = new GroupOperator();
groupApplyOn.OperatorType = GroupOperatorType.And;
groupApplyOn.Operands.Add(isB);
groupApplyOn.Operands.Add(isA);
groupApplyOn.Operands.Add(isC);
其中 isX 是 BinaryOperator ..
BinaryOperator isB = new BinaryOperator("VALIDITY", null,
BinaryOperatorType.Equal);
这段代码给了我错误 - 如何使用 public UnaryOperator IsNull()
检查“VALIDITY”是否为空?
GroupOperator groupApplyOn = new GroupOperator();
groupApplyOn.OperatorType = GroupOperatorType.And;
groupApplyOn.Operands.Add(isB);
groupApplyOn.Operands.Add(isA);
groupApplyOn.Operands.Add(isC);
where isX are BinaryOperator ..
BinaryOperator isB = new BinaryOperator("VALIDITY", null,
BinaryOperatorType.Equal);
this code gives me error - how to check with public UnaryOperator IsNull()
if "VALIDITY" is null?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请改用 NullOperator。
Use the NullOperator instead.