我有一个代码
Dim drQues As DataRow = dtQuestion.AsEnumerable()
.First(Function(uqno) uqno.Field(Of Int32)("uniqueqno") = drqno("uniqueqno"))
我想检查drQues
是Nothing
我试过
If Not drQues <> Nothing THEN
但它说
&LT;&GT;没有为System.Data.DataRow和System.Data.DataRow
定义
如何检查linq中是否有指定条件的行?
答案 0 :(得分:4)
使用Is
或IsNot
,而未定义常用的比较运算符。
If drQues Is Nothing Then