代码之家  ›  专栏  ›  技术社区  ›  Elddif

序列包含几个元素

  •  0
  • Elddif  · 技术社区  · 6 年前

    我正在使用Dapper检索请求SELECT的结果。

     List<dynamic> results = connection.Query("SELECT id_fonction from liste_personnels_fonctions where id_personnel = @id_personnel", new { id_personnel }).ToList();
    

    但有时我有两个结果。当我使用 .SingleOrDefault() FirstOrDefault 我只有第一排,我需要他们两个。。。

    有什么想法吗?

    1 回复  |  直到 6 年前
        1
  •  1
  •   Richard Hubley    6 年前

    如果你想要一个Int的列表,那就去问Dapper

    List<int> results = connection.Query<int("SELECT id_fonction from liste_personnels_fonctions where id_personnel = @id_personnel", new { id_personnel }).ToList();