Robin Michael

Results 38 comments of Robin Michael

What platform targets are you looking for?

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...

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.

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); ```