我有一张桌子。
有一列名称是分支。其中包含逗号分隔的值。像这样
1,2
2,4
5,6
3,4
6,8
4,9,7
等等...
我有一个List<string>
包含两个值 3 和 4。
我需要一个数据库查询,它将获取包含 3 或 4 的所有列数据。
所以输出将是
2,4
3,4
4,9,7
我正在使用此代码作为解决方案。
RowCollection.Where(row => row.Split(",").ToList()
.Where(x => list.Contains(x)).Any()).ToList();
这显示错误。
Method 'System.String[] Split(Char[])' has no supported translation to SQL.
请让我知道解决方案我将为此做些什么。