I'm using Sql Dependency to notify changes when they occur. But is there any way that I can identify the ID of a particular record(s) that has changed.
Here is the dependency change callback function which I'm using right now.
private static void onDependencyChange(Object o, SqlNotificationEventArgs args)
{
//
}
In both the callback arguments, I can't find anything which would give details about the changed record. Does anyone know of a solution or a work around ?