I am using CQRS with EventSourcing. I have to use SignalR for updating grid when particular event raised in all opened browsers. So, I have to push data to all clients once Particular event raised.
Currently when user manually refresh page the query is fired which is pulling the data, but I have to pull data without manual refresh using SignalR. I am new to SignalR, Can I get any sample code/reference for implementing the same?