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

Schema Support

Sauce assumes that all objects are stored in the users default schema
On database that do not support schemas, a the table is named as follows
$(schema)_$(table)
You can change the schema on a per object basis
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DataAccess.Core.Attributes;

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