Is there a way to bind an event to Sql Server (specially Azure) so that, when there's new data in a table, for instance, my .NET process will be notified?
Another option that I tought about would be a Sql Server long polling
query. That is, I execute a query but it does not return anything until there's something to return or when a timeout is reached.
To be more clear about my problem, I have a different threads in different instances of Windows Azure waiting for notifications. They must take action as soon as there is a new notification. I'd like not to keep them querying the database or the storage every 2 seconds.