private StockTicker(IHubConnectionContext<dynamic> clients)
{
Clients = clients;
//Posts
var mapper = new ModelToTableMapper<Posts>();
mapper.AddMapping(s => s.ID, "ID");
_tableDependency = new SqlTableDependency<Posts>(
ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString,"tbl_Posts",
mapper);
_tableDependency.OnChanged += SqlTableDependency_Changed;
_tableDependency.OnError += SqlTableDependency_OnError;
_tableDependency.Start();
}Why I got this error? Additional information: User without permissions.