We have an application in which we want to identify a large number of database objects and some business logic. Each object will require the ability to read, add, and update. we do not currently expect permission to delete.
The software that we create is used in a wide range of business, so many of them work with the services of the Bureau, and some of our clients use this approach to create separate databases for financial reasons.
We want to be able to minimize the number of endpoints that need to be maintained. Currently, there are only 3 tables that will be displayed as WCF interfaces, each of which has 6 attached methods. this is manageable, but if there are 50 databases in the job that suddenly become 150 endpoints. worse, if we have 50 tables, which become 2500 endpoints.
Does anyone have a suggestion on how we could design the system, we still have a simple entity model Job.add (var1) or iList jobs = Job.GetSelected ("sql type read").
without all of these endpoints
wcf
Malcolm
source share