I am in the process of converting our win forms application to use a WCF service instead of client calls to a SQL database.
Im not sure whats best practice but we have identical database schemas on about 600 databases.
i was hoping to find a solution here where i in the startup of the winform application declare the WCF service to use this database. as of i'm trying to avoid in every single method to pass a parameter for what connection string to use.
i have some understanding of WCF but i know very little of "public declarations" and the connection context, and have not found any good examples for my scenario.
is this even possible?
if anyone can guide me in the right direction or hand me some sample code it would be very much appreciated! :)
Thanks in advance
WCF does support sessions. So you could pass which database you want to use in the first call, and all other calls would use the value in session.
See: http://msdn.microsoft.com/en-us/library/ms733040.aspx