使用signalR将通知推送到数据库中的预定义组

时间:2017-06-08 15:06:06

标签: c# asp.net-mvc entity-framework notifications signalr

我正在尝试使用signalR向数据库中创建的特定组(而不是用户使用signalR加入的signalR组)发送通知。

例如,用户创建了一个活动并邀请了2个人,所有与该活动相关的通知都必须仅被邀请给受邀用户。 另一个事件也一样。

我已经找到了这样的解决方案,但我找不到我真正想要的东西。

2 个答案:

答案 0 :(得分:1)

I found a solution to my need. I will use tha mapping of users to connection Id with customized IUserIdProvider as described in the link below mapping-signalr-users-connections-using-iuseridprovider

答案 1 :(得分:0)

如果您不打算使用记录here的信号器组。

然后假设您正在跟踪数据库组中的用户标识,您可以发送给该特定用户标识或用户标识。

Clients.Client(用户ID).sendMessage(消息);