我有一个combo
DropDownList 我用这样的数据填充:
cboTypeOfMaterial.DataSource = (from tom in context.MaterialTypes
where tom.IsActive == true
select tom.Name).Distinct().ToList();
问题是我使用此 DropDownList 进行搜索,并且我希望有一个空行或其他任何内容,如果用户不想在某个搜索中包含此数据,我可以使用该行将列表留空。