The class browser of NDepend doesn't seem to have an option for revealing inherited methods.
We have a scenario where we have thousands of singly-rooted Model objects that descend from RootModel, for instance. Only RootModel defines Save(). How does one form a query for finding all instances where SampleModel (:RootModel) invokes Save()?
SELECT METHODS WHERE IsUsing "SampleModel.Save()" ORDER BY DepthOfIsUsing
...is rejected: Not a valid assembly, namespace, typ, method or field name.
This seems to be the best approximation but is not exact:
SELECT METHODS WHERE IsUsing "SampleModel" AND IsUsing "RootModel.Save()" ORDER BY DepthOfIsUsing
This seems like a pretty heavy limitation, no? What's the workaround?