在我的列中DataTable
是空值。当我在这个表上创建一个DataView
时,我想过滤掉空值。我该怎么做呢?
我的代码是这样工作的:
//get the cities and a view on the data
DataTable dtPlaatsen = client.getCities();
DataView dvPlaatsen = dtPlaatsen.DefaultView;
// filter and sort the view
dvPlaatsen.RowFilter= "Isnull(Plaatsnaam,'Null Column') <> 'Null Column'";
dvPlaatsen.Sort = "Plaatsnaam";
//attach the view as datasource
ddlCities.DataSource = dvPlaatsen;
ddlCities.DataTextField = "Plaatsnaam"; //the field to display to the user
ddlCities.DataValueField = "PlaatsId"; //the field which is send
ddlCities.DataBind();
ddlCities.SelectedIndex = 50;