我有DataTable
它给我带来了数据库中的以下数据。
Name
Address
CountryID
我想通过 LINQ 过滤我这边的数据:我有一个复选框列表,其中包含 ID 为 1、2、3、4 的国家/地区。我只想获得检查的国家/地区的结果。例如 1、2、4 作为 LINQ 的 CountryID。我想将它绑定到网格视图。
我正在使用以下代码:
foreach (ListItem cBox in chkGodownlst.Items)
{
if (cBox.Selected)
{
var a = dt.AsEnumerable()
.Where(r => r.Field<int>("CountryID") == Convert.ToInt32(cBox.Value));
}
}