Book Image

ASP.NET 3.5 Application Architecture and Design

By : Vivek Thakur
Book Image

ASP.NET 3.5 Application Architecture and Design

By: Vivek Thakur

Overview of this book

Table of Contents (14 chapters)
ASP.NET 3.5
Credits
About the Author
About the Reviewers
Preface

Chapter 8. Database Design

In the first two chapters, we learnt that we could divide our whole application into the following tiers:

  • Presentation Layer: This is the client browser.

  • The UI layer: An ASP.NET website having ASPX/ASCX web pages.

  • Business Logic Layer (BLL): This contains the business logic code.

  • Data Access Layer (DAL): This contains the data access code that talks to the data layer.

  • Common Tier: This is just a class library that contains the Data Transfer Objects, or DTOs, used to pass data between the tiers. This tier also contains utility or helper methods that are common to all of the tiers.

  • Data Layer (DL): This is the physical database, such as the MS SQL Server; this can include text files or XML Files.

For the sake of convenience, let us revisit the diagram from Chapter 4 to see how all these tiers were interacting in a 5-tier system:

So far, we have focused on the UI, the BLL and the DAL layers, understanding the different application architectural approaches as well as...