vb.net – LINQ Where语句集合中

vb.net – LINQ Where语句集合中,第1张

概述我有一个Customer对象,其中包含ContactNumbers的集合. 是否可以通过LINQ获取客户列表,其中一个联系号码=’123’? Public Class Customer Public Overridable Property ContactNumbers As List(Of ContactNumber)End ClassPublic Class ContactNu 我有一个Customer对象,其中包含ContactNumbers的集合.
是否可以通过liNQ获取客户列表,其中一个联系号码=’123’?

Public Class Customer    Public OverrIDable Property ContactNumbers As List(Of ContactNumber)End ClassPublic Class ContactNumber    <required()>    Public Property ID As Integer    <required()>    <StringLength(20)>    Public Property Number As String    Public OverrIDable Property Type As ContactNumberType    Public Property Primary As BooleanEnd ClassDim findnumber as String = '123'Dim customers = db.customers.toListcustomers = customers.Where..... ?
解决方法 请尝试以下方法

customers = customers.Where(Function (x) x.ContactNumbers.Any(Function (y) y.Number = "123"))

这里的诀窍是Any函数.如果集合中的任何项与谓词匹配,则返回True.在这种情况下,y.Number = 123

总结

以上是内存溢出为你收集整理的vb.net – LINQ Where语句集合中全部内容,希望文章能够帮你解决vb.net – LINQ Where语句集合中所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1229550.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存