-
Type:
Task
-
Resolution: Done
-
Priority:
Minor - P4
-
None
-
Affects Version/s: 1.8.2
-
Component/s: Documentation
-
None
-
None
-
None
-
None
-
None
-
None
-
None
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 ?