DataTable 基本转换简单实例
Posted chengjunde
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DataTable 基本转换简单实例相关的知识,希望对你有一定的参考价值。
var query = from dt in tblProduct.AsEnumerable()
where dt.Field<string>("StockNo") ==""
select dt;
if (query.ToList().Count > 0)
{
Alert.ShowInTop("数据不全,仓库不能为空");
return;
}
以上是关于DataTable 基本转换简单实例的主要内容,如果未能解决你的问题,请参考以下文章