.net 在C#中,如何查看数据集是否为空?

eqoofvh9  于 2022-12-14  发布在  .NET
关注(0)|答案(1)|浏览(191)

我最近使用row.count来帮助我查看数据集是否为空,是否有其他方法可以判断数据集是否为空?(更多更新至2022年)
我试过Row.count,也进一步在谷歌上搜索过,但我更喜欢人们的直接回答

c86crjj0

c86crjj01#

以下是测试中的数据集和表的几种方法:

Dataset ds;

if (ds != null) {}  //Check if Dataset is null.

if (ds.Tables.Count > 0) {}  //Check if Dataset has any tables.

if (ds.Tables.Contains("tableName")) {}  //Check if Dataset has a specific table name.

Datatable dt = ds.Tables["tableName"];  //Get the specific table.
if (dt.Rows.Count > 0) {}  //Check if specific table has rows.

if (dt.Columns.Contains("columnName")) {}  //Check if specific table has a specific column name.

相关问题