I'm getting a return value of False from a FethEntity call. How do I determine what the query error was?
I've tried the following to no avail:
Try
tempAdapter.FetchEntity(arbCat)
Catch ex As ORMException
Debug.WriteLine(ex.InnerException)
Catch ex2 As Exception
Debug.WriteLine(ex2.InnerException)
End Try
Nothing ever gets trapped what am I missing?