Click here to Skip to main content
15,885,741 members
Articles / Programming Languages / C#

Building an Agile SQL Data Access Layer

Rate me:
Please Sign up or sign in to vote.
4.80/5 (5 votes)
6 Jan 2009CPOL4 min read 51K   646   58  
An article on building a SQL Server data access layer in C# in a completely separate layer.
using System;
using System.Collections.Generic;
using System.Text;

namespace InMemoryDal.Entities
{
    public class OrderItem
    {
        private int quantity;
        private Guid id;
        private Order containingOrder;
        private Product product;
        
        [EntityKey, Persistable, Searchable]
        public Guid Id
        {
            get { return id; }
            set { id = value; }
        }

        [Persistable, Searchable]
        public Product Product
        {
            get { return product; }
            set { product = value; }
        }

        [Persistable, Searchable]
        public Order ContainingOrder
        {
            get { return containingOrder; }
            set { containingOrder = value; }
        }

        [Persistable, Searchable]
        public int Quantity
        {
            get { return quantity; }
            set { quantity = value; }
        }

        public decimal Total
        {
            get
            {
                return quantity * product.Price;
            }
        }
    
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Italy Italy
Software architect. At present working on C# development, with mainly Asp.net Ajax and MVC user inteface. Particularly interested in OOP, test driven, agile development.

Comments and Discussions