Hi all,
This is my first post here. I appreciate any help you can give me.
I am writing a solution that involves having a ConnectionManager application aside from the main application. I intend to have the ConnectionManager create sessions that wrap around the OleDbConnection that provides the connection to the database.
The ConnectionManager will have to return the session to the main application so that it may use it. The ConnectionManager will also pass sessions to API calls that may be executed by third party integrated applications.
I've done some research and read that any object with a live connection cannot be serialized and that makes sense to me. Is there any other way to pass an instance of an object from one application to another?
If it helps at all, both the ConnectionManager application and the main application share a dll which contains the ConnectionManager class as well as my session class.
Thanks in advance.