1. 程式人生 > >去掉DataTable中重複的行

去掉DataTable中重複的行

DataTable dt = DataTable(); DataView myDataView = new DataView(dt);//去掉重複行的DataView (多個醫生在同一個醫院的情況) DropDownList.DataSource = myDataView.ToTable(true, new string[] { "hospital_id", "hname" }); DataView的ToTable(true,欄位)方法是去掉重複的資料
第一個引數,true  去除重複,false 不去除
第二個引數, 需要顯示的欄位,我這裡顯示"hospital_id", "hname"