c# - How can I make SQL Server notify if there is a change in table records -


i using c# asp.net , sql server 2008.

when of rows in particular table changes, sql server should proactively notify code, there change. hitting stored procedure fetch records table if records in table changed.

i don't want use polling.

i have 1 option : sqldependency class service broker.

which best way achieve this?


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -