我有一个这样的表结构(如图所示),如果第一行应该是 (authlevel=1,authorized=1) AND 第 2 行(authlevel=2 和authorized=0 或 null)AND 第 3 行,我想要这样的条件(authlevel=3 and (authorized=0 or null)) AND
我已经尝试了下面的代码,但无法理解。
Dictionary<string, BO.User> lstuserCH = new Dictionary<string, BO.User>();
foreach (DataRow row1 in _data.wsm_PurchaseOrder_Auth) {
if (((Convert.ToInt32(row1("AuthLevel")) == 1)
&& !row1.IsNull("Authorised"))) {
// here i need only the 1st element of dictonary lstuserCH
}
else
{
//dictionary lstuserCH should be remain as it is.
}
}
慕莱坞森
相关分类