I have multiple object and some of them go to one schema "NewObjects" and the other go to "OldObjects" I want to be able to make what the NewObjects Schema is configurable from config file. Is there a way? Here is what I have.
namespace IDJC.Domain
{
[Table("Agency", Schema = "NewObjects")]
public class Agency
{
public int AgencyId { get; set; }
public string AgencyName { get; set; }
}
}