This question is locked. New answers and comments are not allowed.
linq to entity querys are being flagged as errors
see attached for snapshot of error
thanks
dco
| Public Function getTopLevelLocationsByArea(ByVal IDLocAreaMaster As String) As IQueryable(Of LocMaster) |
| Dim qLocArea As IQueryable(Of LocMaster) = _ |
| From _ |
| LM In Me.ObjectContext.LocMaster _ |
| Join LT In Me.ObjectContext.LocTypeMaster On LM.LocTypeMaster Equals LT _ |
| Where LT.LocAreaMaster.IDLocArea = IDLocAreaMaster And LM.LocMaster2 Is Nothing _ |
| Select LM Order By LM.NameLoc |
| Return qLocArea |
| End Function |
see attached for snapshot of error
thanks
dco