In AspNet.SignalR.Core, there was this method in IHubConnectionContext where you can send a response to a list of groups while excluding some Connection Ids i.e:
T Groups(IList<string> groupNames, params string[] excludeConnectionIds);
This would be called as:
Clients.Groups(groupNames, exconnectionIds).ReceiveCollaborationNotification(response);
Now I have migrated to AspNetCore.SignalR.Core and there is no such method that accepts both a list of group names and Connection Ids to be excluded. It does have the method mentioned below but this one only accepts one group name, not a list.
T GroupExcept(string groupName, IReadOnlyList<string> excludedConnectionIds);
How can I achieve what T Groups(IList<string> groupNames, params string[] excludeConnectionIds does in AspNetCore.SignalR.Core