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

Field Aliasing

Sauce assumes that all columns are named as they will appear in the Databse.
This can be changed on a per property basis
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(FieldName="AnotherField")]
    public string Name { get; set; }
  }
}