NDepend CQL 计数查询
我想查询特定类的公共方法表以及 NDepend CQL 中每个方法使用情况的计数。 当前查询如下所示:
SELECT METHODS
FROM TYPES "AE.DataAccess.DBHelper"
WHERE IsPublic
Is it possible toggering querys in CQL?
I want to query a table of public methods of a specific class and a count of each methods usage in NDepend CQL. Currently query looks like this:
SELECT METHODS
FROM TYPES "AE.DataAccess.DBHelper"
WHERE IsPublic
Is it possible to aggregate queries in CQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来以下查询将生成一个漂亮的表,其中包含我正在查找的值,可以将其导出到 Excel。 多么棒的工具啊。
It looks like the following query will generate a nice table with the values I was looking for that can be exported to Excel. What an awesome tool.