Eu estou usando Entity Framework 5 code first
e ASP.NET MVC 3
.
Estou lutando para que o objeto filho de um objeto filho seja preenchido. Abaixo estão minhas aulas ..
Classe de aplicação;
public class Application
{
// Partial list of properties
public virtual ICollection<Child> Children { get; set; }
}
Classe da criança:
public class Child
{
// Partial list of properties
public int ChildRelationshipTypeId { get; set; }
public virtual ChildRelationshipType ChildRelationshipType { get; set; }
}
Classe ChildRelationshipType:
public class ChildRelationshipType
{
public int Id { get; set; }
public string Name { get; set; }
}
Parte do método GetAll no repositório para retornar todos os aplicativos:
return DatabaseContext.Applications
.Include("Children");
A classe Child contém uma referência à classe ChildRelationshipType. Para trabalhar com os filhos de um aplicativo, eu teria algo assim:
foreach (Child child in application.Children)
{
string childName = child.ChildRelationshipType.Name;
}
Eu recebo um erro aqui que o contexto do objeto já está fechado.
Como especifico que cada objeto filho deve incluir o ChildRelationshipType
objeto como o que fiz acima?