Hello Everyone,
I have a quick question that I am hoping is fairly simple to answer. I am attempting to develop a shared Employee object library for my company. The idea is to create a centralized database that contains information about our employees (Reporting Hierarchy, Office Locations, General Info, etc) and then create an shared object library for this database.
My question is what is the best way to create this library so it can be shared among applications.
- Do I create a self contained library that stores the database connection (I can see concurrency issues here and it doesn't feel right).
- Client -> Server and then deploy the "client library" for use among any application.
- OR would a Web/WCF service be more ideally suited to this situation.