View on GitHub

SauceDB

.net ORM with multipe database engine support.

Download this project as a .zip file Download this project as a tar.gz file

Column Loading

By default all properties on an object will load from the DB all the time. You can change this behavior on a per column basis.
This can be particully useful for blobs and the like.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DataAccess.Core.Attributes;

namespace SauceExample
{
  public class MyObject
  {
    public int id { get; set; }
    
    [DataField(LoadField=false)]
    public string Name { get; set; }
  }
}