Object Schema
Sauce will assume that all objects are in the default schemaThis 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(Schema="Tests")]
public class MyObject
{
public int id { get; set; }
public string Name { get; set; }
}
}