gpt4 book ai didi

c# - 类型 'System.String[]' 不支持比较运算符

转载 作者:行者123 更新时间:2023-11-30 15:12:30 26 4
gpt4 key购买 nike

为什么这一行:

var category = _dataContext.Categories.Where<Category>(p => p.Keywords.Split(' ').Contains<string>(context.Request.QueryString["q"])).First();

抛出 System.NotSupportedException:

Comparison operators not supported for type 'System.String[]'

我该如何解决?谢谢。

最佳答案

所以您正在数据库中以空格分隔的列中查找值(来自查询字符串)?您正在使用 Split 查询数据库中的各个值吗?

(只是检查我的假设...)

string.Split 不支持这种方式(在列数据的数据库中)- 请参阅此处了解 supported string operations . (请注意 string.Split 明确不支持)。

我很懒;当我在数据库中分隔数据时(比较少见),我总是在数据的开头和结尾添加相同的分隔符;然后我可以搜索:

string searchFor = DELIMITER + searchValue + DELIMITER;
...
.Where(row => row.Value.Contains(searchFor));

但是;在这种情况下,我希望最实用的选择可能是编写一个 UDF 函数来搜索分隔的 varchar (正确处理第一个/最后一个项目),并在数据上下文中公开 UDF - 然后使用:

.Where(row => ctx.ContainsValue(row.Value, searchValue)); // ContainsValue is our UDF

或者 - 规范化数据...

.Where(row => row.Values.Any(s=>s.Value == searchValue));

关于c# - 类型 'System.String[]' 不支持比较运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1211942/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com