I'm starting to work with the Entity Framework, and I need some example of how I can define for my tables the Schemas that each is contained. My database was created as in the example:
/*schema [Pes] -> relativo ao contexto Pessoa*/
Pes.Pessoa;
Pes.PessoaFisica;
Pes.EstadoCivil;
/*schema [Sis] -> relativo ao contexto do Sistema*/
Sis.Versao;
Sis.Configuracao;
Sis.Usuario;
From this structure, how can I pass to the EntityFramework that the Versao
table is defined in Schema [Sis]
?