I'm working on a c# application. In this application there is master database and a slave database. Master database update data in slave database using transcriptional replication (I have implemented it and it is working fine).
My issue is that when master database update data of slave database, how my c# application will know that data is updated so refresh data in cache as well as on User Interface.
In another words how can i publish data from sql server to c# application.