是否可以通过sql server数据库中的表中的多个字段或列来过滤我的collectionview
在下面的代码中,我只能根据表中的姓氏列进行过滤,我可以使用多个表列进行过滤吗?
ICollectionView view = CollectionViewSource.GetDefaultView(EmployeeView.ItemsSource);
view.Filter = m => ((EmployeeMaster)m).Surname.ToLower().Contains(TextBoxSearch.Text.ToLower());
In the code below, i can only filter based on the Surname column in my table, can i filter using more than one table column?
ICollectionView view = CollectionViewSource.GetDefaultView(EmployeeView.ItemsSource);
view.Filter = m => ((EmployeeMaster)m).Surname.ToLower().Contains(TextBoxSearch.Text.ToLower());
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试通过
&&
或||
运算符组合条件,如下所示:You could try combining the conditions via
&&
or||
operators, like this: