In umbraco 7, I would like to count all members of a particular group. In the docs for MemberService there is the method...
.GetMembersByGroup(string role);
which it is possible to count on obviously...
.GetMembersByGroup(string role).Count();
...IF I want to kill the performance of the site...that is doing a select, loading all data for all members, and then counting them.
What I need is something like...
.CountMembersByGroup(string role);
... and I'm hoping that I'm just looking in the wrong place. Does such a thing exist/is it possible?