筛选数据集

本文关键字:数据集 筛选 | 更新日期: 2023-09-27 17:56:23

我有一个装满客户的数据集。我想知道是否有任何方法可以过滤数据集并仅获取我想要的信息。例如,为具有CostumerID = 1的客户获取CostumerNameCostumerAddress

可能吗?

筛选数据集

您可以使用

DataTable.Select

var strExpr = "CostumerID = 1 AND OrderCount > 2";
var strSort = "OrderCount DESC";
// Use the Select method to find all rows matching the filter.
foundRows = ds.Table[0].Select(strExpr, strSort);  

或者您可以使用DataView

ds.Tables[0].DefaultView.RowFilter = strExpr;  

更新 我不确定为什么要返回数据集。但我会使用以下解决方案:

var dv = ds.Tables[0].DefaultView;
dv.RowFilter = strExpr;
var newDS = new DataSet();
var newDT = dv.ToTable();
newDS.Tables.Add(newDT);

没有提到合并?

DataSet newdataset = new DataSet();
newdataset.Merge( olddataset.Tables[0].Select( filterstring, sortstring ));

以上真的很接近。这是我的解决方案:

Private Sub getDsClone(ByRef inClone As DataSet, ByVal matchStr As String, ByRef outClone As DataSet)
    Dim i As Integer
    outClone = inClone.Clone
    Dim dv As DataView = inClone.Tables(0).DefaultView
    dv.RowFilter = matchStr
    Dim dt As New DataTable
    dt = dv.ToTable
    For i = 0 To dv.Count - 1
        outClone.Tables(0).ImportRow(dv.Item(i).Row)
    Next
End Sub