LINQ 错误类型 DBNull 列

发布于 2024-11-04 06:36:13 字数 337 浏览 1 评论 0原文

我正在查询 datagridview,除非其中一个单元格没有任何内容(dbnull),否则它会很好地工作。如何克服这个?

例外:未为类型“DBNull”和类型“DBNull”定义运算符“=”。

Dim query = From row As DataGridViewRow In DataGridView1.Rows _
            Where row.Cells(SelectedColumnIndex).Value = filter _
            And row.Visible = False _
            Select row Distinct

I am querying a datagridview and it works great unless one of the cells has nothing (dbnull). How to over come this?

Exceptions: Operator '=' is not defined for type 'DBNull' and type 'DBNull'.

Dim query = From row As DataGridViewRow In DataGridView1.Rows _
            Where row.Cells(SelectedColumnIndex).Value = filter _
            And row.Visible = False _
            Select row Distinct

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

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

发布评论

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

评论(1

绅士风度i 2024-11-11 06:36:13

使用 .Equals() 方法比较可能为 null 的值。示例:

Dim query = From row As DataGridViewRow In DataGridView1.Rows _
        Where row.Cells(SelectedColumnIndex).Value.Equals(filter) _
        And !(row.Visible) _
        Select row Distinct

或者如果两者都可能为 null,则可以使用基本 Object.Equals() 方法进行比较:

Dim query = From row As DataGridViewRow In DataGridView1.Rows _
            Where Object.Equals(row.Cells(SelectedColumnIndex).Value, filter) _
            And !(row.Visible) _
            Select row Distinct

Use the .Equals() method to compare values in which one may be null. Example:

Dim query = From row As DataGridViewRow In DataGridView1.Rows _
        Where row.Cells(SelectedColumnIndex).Value.Equals(filter) _
        And !(row.Visible) _
        Select row Distinct

Or if both may be null, you can use the base Object.Equals() method to compare:

Dim query = From row As DataGridViewRow In DataGridView1.Rows _
            Where Object.Equals(row.Cells(SelectedColumnIndex).Value, filter) _
            And !(row.Visible) _
            Select row Distinct
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文