I want to query the table of public methods of a particular class and the number of methods used in NDepend CQL. Currently, the request is as follows:
SELECT METHODS
FROM TYPES "AE.DataAccess.DBHelper"
WHERE IsPublic
Is it possible to aggregate queries in CQL?
source
share