如何在 DataView.RowFilter 表达式中表示 Double 的特殊值(Pos/Neg Infinity、NaN)?

发布于 2025-01-01 03:33:21 字数 159 浏览 0 评论 0原文

我有一个特殊行,其中包含其他行的总和。它总是排在第一位,但我需要能够将它保留在 RowFilter 表达式中。我必须表明这一行是特殊的唯一一列是一列双精度数。 Double 的任何特殊值都应该有效,但我不知道如何在表达式语言中测试它们。 Column = 'NaN' 不起作用。

I have a special row that contains the sum of the other rows. It always comes first in a sort but I need to be able to keep it in a RowFilter expression. The only column I have to indicate that this row is special is a column of doubles. Any of the special values for Double should work but I don't know how to test for them in the expression language. Column = 'NaN' did not work.

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

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

发布评论

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

评论(2

掩耳倾听 2025-01-08 03:33:21

试试这个:

Double.IsNaN(Column)

Try this:

Double.IsNaN(Column)
凉墨 2025-01-08 03:33:21

看起来 Expression 列中支持的函数数量非常少。您最好的选择可能是将 null 作为 Double 值传递,然后您可以使用 ISNULL() 进行测试:http://msdn.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx

但是如果你可以调用 System.Double.IsNaN(Column ),那会更优雅,恕我直言。

It looks like there are a very small number of functions supported in the Expression column. Your best bet may to be to pass null as the Double value, for which you could then test with ISNULL(): http://msdn.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx

But if you can call System.Double.IsNaN(Column), that'd be much more elegant, imho.

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