I have two SQL Server instances (LocalDb and LiveDb) using two different connection strings. I currently use C#'s SqlBulkCopy to transfer master tables to from the Livedb to my localDb. This works fine and is very fast.
However, I need to UPDATE tables on my LiveDb based on a query of records from my LocalDB. Is there an example of doing this in a C# Windows application?