To create a project dedicated to data command classes. These classes will provide all access to the database for the rest of the solution.
You have the Northwind solution open. You should already have a Web forms project in the solution.
We need a project to hold all of code that provides access to the database if we want to have one and only one copy of that data access code. By definition, this means a project that lives between the database and the rest of the application.
Note that this presents an alternative method of dealing with namespace and project naming issues. Compare this with the way we set up the namespaces in the original web project. The goal of each is to end up with a project naming structure that is mirrored by the directory structure for the solution. Which way you choose to do it depends solely on which you like better.
Previous Step: Create the Northwind Solution
Next Step: Create Region Helper Class