“不在”的更简单方法在动态 linq 语言中?

发布于 2024-09-09 02:47:50 字数 321 浏览 2 评论 0原文

我有一个字符串数组和一个 IQueryable(称为 MyTypeQbl)。

我想迭代数组中没有相应 MyType.MyString 的字符串。

我认为这会是:

foreach (string str in stringsArr.Where(s => MyTypeQbl.Count(m => m.MyString == s) == 0))

但这是否比应有的更复杂?有没有更简单的方法来表示这一点?

我陷入的心理循环是,我试图在字符串数组中查找与 IQueryable 中对象内的属性不匹配的字符串!

I have an array of strings and an IQueryable (called MyTypeQbl).

I want to iterate through the strings in the array which do not have a corresponding MyType.MyString.

I thought this would be:

foreach (string str in stringsArr.Where(s => MyTypeQbl.Count(m => m.MyString == s) == 0))

But is this just more complex than it should be? Is there an easier way to represent this?

The mental loop I'm stuck in is that I'm trying to find strings in a string array which do not match a property inside objects in an IQueryable!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

镜花水月 2024-09-16 02:47:50
foreach (string str in
    stringsArr.Where(s => !MyTypeQbl.Any(m => m.MyString == s)))
foreach (string str in
    stringsArr.Where(s => !MyTypeQbl.Any(m => m.MyString == s)))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文