我有一个组合框,我从sql server数据库绑定。我将数据库中的一列绑定到组合框中。问题是我在那里出现了几次相同的项目。我正在查询存储过程。如果有任何明显的遗漏,请告诉我。感谢
public void BindComboBox()
{
_dsinventory = new DataSet();
_dsinventory = dbAccess.ExecuteQuery(InventoryOutputQuery.ComboBox_Type());
cmbType.ItemSource = _dsinventory.Tables[0].DefaultView;
cmbType.DisplayMemberPath = _dsinventory.Tables[0].Columns[Type].ToString();
}
答案 0 :(得分:2)
在选择查询
中尝试使用不同的关键字 Select distinct columnname form table
答案 1 :(得分:0)
DISTINCT
。
仔细检查您正在使用的查询,然后转到DISTINCT
。