开发者

How do I test if a Linq to SQL query returns no rows?

How do I test if a Linq to SQL query returns no r开发者_开发百科ows?


The .Any() LINQ operator:

results.Any()

Returns false if there are no rows.


You can use results.Any(); (the Queryable.Any method).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜