请参阅下面的选择。
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”)。
我该怎么做?
感谢。