I have a model like the following:
[Table(\"forms\", Schema = \"mySchema\")] public class forms { [Key] public int ID { get; set; } public string field1 {
According to msdn the TableAttribute supports the schema property.
Maybe use:
[Table(Name = "forms", Schema = "mySchema")]