Combobox显示重复的项目

时间:2011-06-16 13:35:09

标签: c# sql combobox

我有一个组合框,我从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();
}

2 个答案:

答案 0 :(得分:2)

在选择查询

中尝试使用不同的关键字
 Select distinct columnname form table

答案 1 :(得分:0)

仅当您确定查询完全正常时,才应使用

DISTINCT

仔细检查您正在使用的查询,然后转到DISTINCT