在DataSet資料集中 DataView篩選資料

龙卷风吹毁停车场發表於2024-06-14
1. 將從資料庫拿到的DataSet資料集轉為DataTable型別
DataTable dt = SqlHelper.GetData()

使用: RowFilter來實現篩選功能

賽選出ClassId為我指定 ClassId的資料
dt.DefaultView.RowFilter = "ClassId=" + classId;
篩選出年齡大於我 text 值的資料
dt.DefaultView.RowFilter = "Age>" + text;

相關文章