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

Object Naming

Sauce will assume that all object are named as such $(CLR_Object_Name)s
This can be changed on a per object basis
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DataAccess.Core.Attributes;

namespace SauceExample
{
  [TableName(TableName="SomeOtherTableName")]
  public class MyObject
  {
    public int id { get; set; }
    public string Name { get; set; }
  }
}