Models.Student”不包含“得分”的定义

时间:2019-06-12 04:11:20

标签: asp.net-mvc dapper dapper-extensions

我有两个表。我的主表叫Student,辅助表叫Marks。 Dapper对我来说是新手。

这是我的代码:

s_idStudent表中的主键,也是Marks表中的外键(学生(父母)–标记(孩子))。

控制器:加入

public ActionResult Index()
{
    string sql ="SELECT TOP 10 * FROM Student AS A INNER JOIN Mark AS B ON A.S_ID = B.S_ID";

    using (SqlConnection connection = new SqlConnection(connectionstring))
    {
        var studentDictionary = new Dictionary<int,Student>();
        var list = connection.Query<Student,Marks,Student>
             (
                 sql,(student, marks) =>
                  {
                      Student Entry;

                      if (!studentDictionary.TryGetValue(student.S_ID,out Entry))
                      {
                          Entry = student;
                          Entry.Marks = new List<Marks>();
                          studentDictionary.Add(Entry.S_ID, Entry);
                      }

                      Entry.Marks.Add(marks);

                      return Entry;
                  },
                splitOn:"S_ID")
               .Distinct()
               .ToList();
                ViewBag.list = list;
    }  

    return View();
}

Result.cs

加入模型

public class Result
{
    public string S_Name { get; set; } //student.cs
    public string S_LName { get; set; } //students.cs
    public int Score { get; set; }       //marks.cs
    public string Status { get; set; }   //marks.cs
}

如何使用result.cs类访问学生表和标记表列?它仅访问学生列,为什么标记表列不访问视图侧?

如何解决此问题?

查看:

@model IEnumerable<Dapper2Join.Models.Result>
@{
    @foreach (var per in ViewBag.list)
    {
        <tr>
            <td>@per.S_Name</td>
            <td>@per.S_LName</td>
            <td>@per.Score</td>
            <td>@per.Status</td>
        </tr>
    }

1 个答案:

答案 0 :(得分:1)

默认情况下,Dapper映射适用于约定。您希望将Result类作为仅具有选定列的查询的输出。您在犯两个错误。

  1. 您不必要地返回了两个表中的所有列。相反,您可以简单地询问所需的列。更改您的SQL查询某些内容,如下所示:

    string sql ="SELECT TOP 10 Student.S_Name, ... Marks.Score, .... FROM Student INNER JOIN Mark ON Student.S_ID = Mark.S_ID";
    

    请注意,我不知道您表中的列名称。如果列别名与属性名称不匹配,则可能需要使用列别名。请参阅底部的链接以获取更多信息。

  2. 您正在映射Student返回的结果与MarksQuery类。相反,您可以直接映射所需的类。即Result。将您的通话更改为Query 某物,如下所示:

    var list = connection.Query<Result>(sql, .....);
    

除默认行为外,Dapper还提供了映射中的更多灵活性和功能。有关使用Dapper进行映射的更多详细信息,请参见these two答案。