检查字段结果查询Linq to Entity的空值

时间:2014-04-24 10:42:28

标签: vb.net linq-to-entities

请参阅下面的选择。

dim query = from a in MyContext.MyTables
Where Not a.ID = 1
Select a

我想检查字段的值是否为空。我正在做以下事情:

if query.count > o then
    if a(0)("field") is nothing then
           messagebox.show("INVALID VALUE FOR RETURNING")
    end if
end if

生成一个exepction,我无法比较值a(0)(“field”)。

我该怎么做?

感谢。

0 个答案:

没有答案