Using LLBLGEN 2.6, .NET 3.5, self-servicing, C#.
While I've read quite a bit about how to make connections with more than one database, I'm new enough to using llblgen that I'm wondering if anyone can point to a simple example that includes all the pieces (.config, C# calls) needed to talk to multiple databases in a single application.
My situation:
1) two identically structured (and named) tables on two different servers with different db names
2) user attempts logs in with credentials
3) need to check credentials to see if user is in either table, and if a match is found, to have access to the info for their entry in whichever table they're found in. Also, need to know if they're found in both, as that would constitute an error.
I know that you can specify different catalog names on a per call basis, that you can do overrides of catalog names, and that you maybe should use adapter instead of self-servicing, but am new enough to llblgen pro to not be 100% sure how this looks in actual code. Is there any simple example that would show how my situation would be wired together? Not a solution to my issue, necessarily, but just C# code and config that shows how to override catalog names to be able to touch two tables on two separate servers under different db names.
Thanks in advance.