Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 winforms 应用程序中使用 devexpress 查找编辑。我在数据库中有许多重复的行,并且这些相同的值出现在 LookUpEdit 控件中。
是否可以在不从数据库中删除这些行的情况下获取查找编辑数据源中的不同值。
谢谢。
在将表格绑定到网格或其他 deXpress 控件之前,请尝试从表格中创建一个视图并在其上应用RowFilter(过滤条件)。
RowFilter
例如:
DataView view = new DataView(yourTable); DataTable distinctTable = view.ToTable(true, "Column1", "Column2" ...);
现在您可以将 绑定distinctTable 到您的控件
distinctTable