Details
-
Task
-
Resolution: Done
-
Minor - P4
-
None
-
1.8.2
Description
var result = someCollection.AsQueryable<SomeType> ().Where(somecondition).Explain();
the above works where as
var result = someCollection.FindAs<SomeType> ().Where(somecondition).Explain();
will not
I would expect the explain to be available here as well or did I get something wrong ?