というDataTable
名前がありdt
ます。と という名前の 2 つの列が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>
。