Robin Michael
Robin Michael
What platform targets are you looking for?
Are both table names the same?
Your code doesn't work as is. I made some adjustments and then it seems to work fine with both tables receiving updates. Here is my revised gist for you including...
Still happening?
This is what you are saying doesn't work 1 Server - 2 Databases (Test1 & Test2) Won't install for Test2 database if Test1 is already installed?
Have you explored using [Reactive Extensions](https://github.com/Reactive-Extensions/Rx.NET)? Monitor the changes from your databases, but then push the observations out as needed by using observables and streams.
Did you fix this?
I did the same thing.
There needs to be some type of loop or message handler available to receive the events. This approach was picked for simplicity and an extra thread currently is easier than...
Something like this? ``` Task.Factory.StartNew(() => NotificationLoop(null), _threadSource.Token, TaskCreationOptions.LongRunning, TaskScheduler.Default); ```