“不在”的更简单方法在动态 linq 语言中?
我有一个字符串数组和一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)