I have a DataSet I use to create Table Adapter to point to a database.
I have set the table adapter to internal which allows me to make them inaccessible outside of teh assemply.
What I am trying to do now is find a way to make the entire Dataset accessible only inside the assembly...so that the only access to it is via my bll class that handles all teh logic I basically dont want anyone to be able to use the Dataset except through my logic class...
Is there an easy way to make an entire DataSet internally accessibly only?
I tried just setting the whol Dataset partial class to internal but then I get errors on the public classes in the bll class for having inconsistent accessibility.
Any ideas?
Start Free Trial