实体框架中的实体应该具有填充列表,但始终为空

时间:2018-12-14 15:01:10

标签: c# entity-framework

我正在为一个采访项目。我的项目有一个EmployeeService类,用于从数据库中获取员工。员工可以有一个家属列表。但是,此列表始终以空数组形式返回。

这是我的实体的样子:

public class Employee : Person
{
    public ICollection<Dependent> Dependents { get; set; } = new List<Dependent>();
}

public class Person
{
    [Key]
    public int Id { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
}

这是我的DbContext类用于访问数据库的样子:

public class AppDbContext : DbContext, IAppDbContext
{
    public AppDbContext(DbContextOptions options) : base(options)
    {
    }

    public AppDbContext()
    {
    }

    public virtual DbSet<Employee> Employees { get; set; }

    public virtual DbSet<Pay> PayEntries { get; set; }

    public virtual DbSet<Dependent> Dependents { get; set; }
}

这是我的EmployeeService类中的一些相关方法。这是我的控制器正在使用的类:

    public ICollection<EmployeeDto> GetAllEmployees()
    {
        return _dbContext.Employees.Select(e => e).ToList().Select(e => e.ToDto()).ToList();
    }

    public EmployeeDto GetEmployee(int id)
    {
        var employee = _dbContext.Employees.FirstOrDefault(e => e.Id == id);

        if (employee == null)
            throw new Exception("Employee does not exist");

        return employee.ToDto();
    } 

现在,我的问题是我的受抚养者列表没有被填充。每次从DbContext中获取一个空数组,我不确定为什么。 GetAllEmployeesGetEmployee方法始终返回一个空的依赖项数组(请注意,这不是由于ToDto()方法引起的。我验证了依赖项在到达该点之前为空)

这是数据库表的屏幕快照,确认Anakin应该有一个依赖项(我稍后将添加Leia)

enter image description here

但是我只想找回这个

{
    "dependents": [],
    "id": 1,
    "firstName": "Anakin",
    "lastName": "Skywalker"
},

1 个答案:

答案 0 :(得分:2)

您需要添加.Include(x => x.Dependents)

return _dbContext.Employees.Include(x => x.Dependents).ToList();

PS:自it breaks Inclusion.起就尝试不使用.Select语句

我建议您使用映射器将源类映射到目标类dto。