Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can some one check the code below ?

When I am trying to use predicate inside where as here Dim result = context.Users.Where(pred) its not compiling.It shows an error.

    Public Shared Function SearchInfoLine(ByVal callerID As String, ByVal callerName As String, ByVal homePhone As String, ByVal cellPhone As String) As Users

        'Dim selector = PredicateBuilder.[False](Of Users)().[Or](Function(p) p. = name)
        Dim pred = PredicateBuilder.True(Of InfoLine)()

        If (Not String.IsNullOrEmpty(callerID)) Then
            pred = pred.And(Function(m As InfoLine) m.CallID = callerID)
        End If

        If (Not String.IsNullOrEmpty(callerName)) Then
            pred = pred.And(Function(m As InfoLine) m.Complainant = callerName)
        End If

        If (Not String.IsNullOrEmpty(homePhone)) Then
            pred = pred.And(Function(m As InfoLine) m.HPhone = homePhone)
        End If

        If (Not String.IsNullOrEmpty(cellPhone)) Then
            pred = pred.And(Function(m As InfoLine) m.CPhone = cellPhone)
        End If

        Dim context As New ComplainTrackingDb()
        Dim result = context.Users.Where(pred)

        Return result
    End Function
share|improve this question
What error does it show? – Gabe Dec 9 '10 at 20:35
its really long...Error 1 Overload resolution failed because no accessible 'Where' can be called with these arguments: Extension method 'Public Function Where(predicate As System.Linq.Expressions.Expression(Of System.Func(Of Users, Integer, Boolean))) As System.Linq.IQueryable(Of Users)' defined in 'System.Linq.Queryable': Value of type 'System.Linq.Expressions.Expression(Of System.Func(Of ComplainTracking_VB.InfoLine, Boolean))' cannot be converted to 'System.Linq.Expressions.Expression(Of System.Func(Of ComplainTracking_VB.Users, Integer, Boolean))'. – Mathew Dec 9 '10 at 20:40
eh....My Bad I was querying different table.which is not of predicate. – Mathew Dec 9 '10 at 20:44

closed as too localized by Justin Ethier, Robert Harvey Aug 24 '11 at 23:26

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.