Closed thepra closed 1 year ago
It's weird, it's as if despite throwing MongoDB.Driver.Linq.ExpressionNotSupportedException
it does return in the end a valid and filtered result...
And Queryable<T>()
doesn't help either.
Should I ignore this exceptions?
gonna need a self contained repro to look in to this. it doesn't seem to throw with stuff i tried.
I'm getting quite many of those exceptions when using more or less complex
Match(e => <condition>)
, ex:Am I supposed to use instead
DB.Queryable<User>() .Where(...)
for such queries? If yes, what are the limits ofMatch(e => ...)
?