我所拥有的是从查询字符串(例如 23、51、6、87、29)接收到的一串逗号分隔的 ID。或者,该字符串可以只说“全部”。
在我的 Linq 查询中,我需要一种说法(在伪代码中):
from l in List<>
where l.Id = all_of_the_ids_in_csv
&& other conditions
select new {...}
我只是不知道该怎么做。我什至不确定用谷歌搜索什么来让我朝着正确的方向前进。任何指向正确方向的东西都会非常有帮助。