我有一个DataTable
名为dt
. 它有两个名为atype_code
和的列module
。现在我需要根据特定查询一个模块atype_code
。
这是我编写但无法正常工作的代码。
DataTable dt = GetATypeCodeList();
var accType = (from myAccType in dt.AsEnumerable()
where myAccType.Field<string>("atype_code") == aTypeCode.Trim()
select myAccType.Field<string>("module"));
acctype
是一个System.Data.EnumerableRowCollection<System.String>
。