这是我的代码:
string[] customerNames = searchModel.CustomerName.Split(',');
query = query.Where(d => customerNames.Contains(d.CustomerName, comparer) || customerNames.Contains(d.Company1.CompanyName, comparer));
如果您只是在寻找完全匹配,哪个有效。但是我想要部分匹配,即:如果customerNames包含元素'ell'
,如果d.CustomerName
为'Hello'
,它将选择d,因为'ell'在'Hello'
我尝试重写EqualityComparer,但我相信它正在尝试使用GetHashCode
函数而不是Comparer中的Equals
,我不知道如何实现。
我应该怎么做?
答案 0 :(得分:1)
string[] customerNames = searchModel.CustomerName.Split(',');
query = query.Where(d => customerNames.Any(c => c.Contains(d.CustomerName)) || customerNames.Any(c => c.Contains(d.Company1.CompanyName)));
但你应该知道,当customerNames
有很多项目时,它可能会变得很慢。