I am using outputcache sqldependency and it works absolutely fine, but now I want to depend on multiple tables.
[OutputCache(Duration = 600, SqlDependency = "db:table1")]
My question: Is sqldependency support relying on multiple tables? if yes, then what is the syntax?
I tried the following syntax, but it did not work, it considers this table1,table2
as a name for one table.
[OutputCache(Duration = 600, SqlDependency = "db:table1,table2")]
Thanks in advance.