I am trying to introduce namespaces to a solution.
I have three projects in one solution:
Business Logic Layer
Data Access Layer
User Interface Layer
The namespaces of the classes in the business logic layer and data access layer are as follows:
companyname.applicationname.layername
If I want to access a class in the Data Logic Layer then I have to include the following statement:
Imports DataAccessLayer.companyname.applicationname.layername
I don’t want to have DataAccessLayer as the first node. Is there a way around this or am I misunderstanding something fundamental about namespaces?
For Namespace Naming Guidelines Check this:
Namespace Naming Guidelines
Try setting: Assembly Name & Default Namespace