Schema Support
Sauce assumes that all objects are stored in the users default schemaOn 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; }
}
}