Domain Namespace:
Tip: Use a high-level singular name such as Sales.Domain, Inventory.Domain, etc. The assembly for your Business Layer should exist in a separate project in Visual Studio.NET from your Presentation Layer. The Business Layer assembly can be included as a Reference in the project for the Presentation Layer. (e.g. Sales.Domain)
Data Namespace: Enter the name of your data access layer namespace (e.g. Sales.Data)
This will be used to build the Data Access Layer components.
(e.g. Customers)
Use singular name to represent a single object in your table - e.g. use "Customer" for the "Customers" table
(e.g. Customer)
This will be used in the Business Layer to allow connection to the Data Access Layer This should be added to your Web.Config or Machine.Config file in the <connectionStrings> section. Below is an example.
<configuration> <connectionStrings> <add name="Sales" connectionString="server=localhost;database=Sales;user id=web_user;password=web_user;"/> </connectionStrings>
Connection String Name (e.g. Sales)