判断Table表中是否含有某一列
Posted 不想生命太空白、
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断Table表中是否含有某一列相关的知识,希望对你有一定的参考价值。
if (row.Table.Columns.Contains("DealRecord_GiftCost"))
{
if (row["DealRecord_GiftCost"] != null && row["DealRecord_GiftCost"].ToString() != "")
{
model.DealRecord_GiftCost = decimal.Parse(row["DealRecord_GiftCost"].ToString());
}
}
以上是关于判断Table表中是否含有某一列的主要内容,如果未能解决你的问题,请参考以下文章
excel中判断一个表中的某一列的数据在另一个表中的某一列中是不是存在