I need to deploy a winform app that uses multiple db's. I need to deploy them with my app as they interact locally.
Can I use ClickOnce or should I be considering a different approach? I found a couple of examples for ClickOnce but they all assumed that the DB is included in the Solution, which isn't the case here.
THis app used to be a webapp and the DB's and DAL reflect that. I am also using Merge Replication with these local db's to the Central one.
Is my best approach to script the creation of the DB's and somehow run those during the install and then fire off merge replication to fill the tables? The DB's also contain over a 100 sproc's that don't alway's play nice with Merge Repl so I need to be able to include those in the initial install as well.
Otherwise, I thought I might figure out how to Attach the DB's during the install which would include the sprocs in them but I do not know how to do that either.
I am open to ALL suggestion's on how to deploy this app with it's 4 seperate SQL DB's.
Thanks!