本文介绍了如何检查数据表中具有False值的boolean datacolmn的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想检查datacolumn类型是boolean我想检查任何行是否有错
你能不能引导我或发送snipets
Hi,
I want to check datacolumn type is boolean i want to check eitherr any rows having false or not
can u guide me or send snipets
bool flag = false;
DataRow[] rows = dt.Select("Discontinue="+flag);
if (rows != null)
{
///
////
}
推荐答案
bool flag = false;
DataRow[] rows = dt.Select("Discontinue="+flag);
if (rows != null)
{
for(int i=0; i < rows.Length; i++)
{
for(int j=0; j < rows[i].ItemArray.Length; j++)
{
if(rows[i].Item[j] is bool && !((bool)rows[i].Item[j]))
flag = true;
}
}
}
这篇关于如何检查数据表中具有False值的boolean datacolmn的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!