0
我想從DataTable中搜索一些數據以顯示在GridView中。如何從DataTable中選擇一些數據
像
(select * from customer where id="1")
我能做到這一點?
我想從DataTable中搜索一些數據以顯示在GridView中。如何從DataTable中選擇一些數據
像
(select * from customer where id="1")
我能做到這一點?
DataRow[] foundRows = yourTable.Select("id=1");
或者你可以篩選默認視圖行:
yourTable.DefaultView.RowFilter = "id = 1";
GridView gv = new GridView();
gv.DataSourse = yourTable.DefaultView
gv.DataBind()