使用EF Core从多对多获取某些列

时间:2019-06-12 14:14:42

标签: c# asp.net-core-2.2 entity-framework-core-2.2

在多对多关系中,我只想从Referencia表中获取某些列(例如Id和Name)以填充选择列表。问题是在使用Linq之前我还没有做过此事,而且我不知道执行此过程的最佳方法是什么。

这是我的模特。

public class Celula
{
    public int Id { get; set; }
    public string Nome { get; set; }
    public string UAP { get; set; }
    public ICollection<MatrizCelulaReferencia> Matrizes { get; set; }
}

public class Referencia
{
    public int Id { get; set; }
    public string Nome { get; set; }
    public bool IsActivo { get; set; }
    public ICollection<MatrizCelulaReferencia> Matrizes { get; set; }
}

public class MatrizCelulaReferencia
{
    public int Id { get; set; }

    public int CelulaId { get; set; }
    public Celula Celula { get; set; }


    public int ReferenciaId { get; set; }
    public Referencia Referencia { get; set; }

    public int ObjectivoHora { get; set; }
    public int UAPId { get; set; }
    public UAP UAP { get; set; }

    public string Tipo { get; set; }
}

这是我当前的查询

   var query = await _context.Referencias
                .Include(r => r.Matrizes)
                .ThenInclude(r => r.Celula)
                .Where(r => r.Matrizes.Any(c => c.CelulaId == Operador.Celula))
                .Select(x => new Referencia
                {
                    Id = // Referencia Id
                    Nome = // Referencia Name
                })
                .ToListAsync();

现在有点混乱,因为我不知道如何在此查询中从Referencia表中选择某些列。我只需要ID和名称

1 个答案:

答案 0 :(得分:1)

您要传递给lambda的x参数是一个Referencia实例,因此您只需这样做:

.Select(x => new Referencia
{
    Id = x.Id
    Nome = x.Nome
});