24

如何编写读取 DataRow 的代码,但是,如果 DataRow 中的文件不存在,它只是跳过它并继续前进,例如:

string BarcodeIssueUnit;
if (dr_art_line["BarcodeIssueUnit"].ToString().Length <= 0)
{
    BarcodeIssueUnit = "";
}
else
{
    BarcodeIssueUnit = dr_art_line["BarcodeIssueUnit"].ToString();
}

现在,列BarcodeIssueUnit可以属于表,但在某些情况下,表中不存在该列。如果它不存在并且我阅读了它,我会收到此错误:

System.ArgumentException: Column `BarcodeIssueUnit` 
does not belong to table Line.

我只想检查该列是否存在,让我们看看值,如果不是,则跳过该部分并继续。

4

3 回答 3

50

使用 . 检查列名DataRow.Table.Columns。如果有转换价值,其他出来。

BarcodeIssueUnit = dr_art_line.Table.Columns.Contains("BarcodeIssueUnit")?
                   dr_art_line["BarcodeIssueUnit"].ToString(): "";
于 2012-05-03T13:14:09.450 回答
5
if(dr_art_line.Table.Columns.Contains("BarcodeIssueUnit"))
{
    BarcodeIssueUnit = dr_art_line.Field<String>("BarcodeIssueUnit");
}
else
{
    BarcodeIssueUnit = String.Empty;
}

http://msdn.microsoft.com/en-us/library/system.data.datacolumncollection.contains.aspx

于 2012-05-03T13:16:29.873 回答
1

您可以检查当前行的表方案是否包含特定列:

 if (!dr_art_line.Table.Columns.Contains("BarcodeIssueUnit"))
 {
     BarcodeIssueUnit = "";
 }
 else
 {
      BarcodeIssueUnit = dr_art_line["BarcodeIssueUnit"].ToString();
 }
于 2012-05-03T13:15:01.830 回答