在客户过滤器中,此语句返回所有客户selectedIDs
的CustomerID
.
例如,selectedIDs
值“1”返回CustomerID
“1”和“10”...
if (!String.IsNullOrEmpty(selectedIDs) && selectedIDs != "*")
{
query = query.Where(x => selectedIDs.Contains(x.CustomerID.ToString()));
}
我怎样才能让这个查询只返回完整的客户selectedIDs
?