我有这个代码
public async void Update(Order order, string notes, List<OrderMenu> oMenu, long userId)
{
var hubContext = GlobalHost.ConnectionManager.GetHubContext<PostHub>();
await hubContext.Groups.Add(Context.ConnectionId, userId.ToString());}
我通过像这样创建集线器的对象从服务器调用此方法
ROS.PostHub po = new ROS.PostHub();
try
{
po.Update(new ROS.Order()
但 context.ConnectionId 返回 null。