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