I want to restrict a TableAdapater so that the queries I create in the tableadapter are only accessible from classes in the same project. The project is to be compiled into a DLL and I dont want someone able to directly access the table adapters via the dll...they shoudl have to use the methods created in the BLL to access the queries in the tableadapters.
C#
Last Comment
Prysson
8/22/2022 - Mon
rmindel
the easiest and best way to do this - is to make them Private
and make Methods who use them in the same class
and make Methods who use them in the same class