Click here to Skip to main content
15,894,955 members
Articles / Programming Languages / C#

A Small ADO.NET Library with Some ORM Capabilities

Rate me:
Please Sign up or sign in to vote.
4.76/5 (31 votes)
10 Dec 2011CPOL6 min read 75.9K   1.4K   72  
Basic CRUD methods with some other interesting features
using System;
using System.Collections;
using System.Collections.Generic;
using Sqless;

[Table("customers", "dbo")]
public class Customer
{
    private int id = 0;
    private string name = string.Empty;
    
    public Customer()
    {}
    
    [Field("cust_id", FieldFlags.Read | FieldFlags.Key | FieldFlags.AutoGen)]
    public int ID
    {
        get { return id; }
        set { id = value; }
    }
    
    [Field("cust_name")]
    public string Name
    {
        get { return name; }
        set { name = value; }
    }
    
    public List<Purchase> GetPurchases()
    {
        Query query = new Query().Eq("cust_id", id).Order("pur_date", true);
        List<Purchase> list = Program.database.Select<Purchase>(query);
        return list;
    }
    
    public virtual Purchase Buy(Product product, int quantity)
    {
        Purchase pur = new Purchase();
        pur.SetCustomer(this);
        pur.SetProduct(product);
        pur.Quantity = quantity;
        pur.PurchaseDate = DateTime.Now;
        Program.database.Insert(pur);
        return pur;
    }
    
    public override string ToString()
    {
        return "<Customer id=" + id + ", name=" + name + ">";
    }
}

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
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions