如何使用Asp.net Web应用程序中的Dapper ORM在子对象(联系人详细信息)中插入数据

时间:2017-11-15 13:28:39

标签: sql-server asp.net-mvc-5 dapper

如何将数据插入用户表。 (在dapper orm中插入查询) 如何在Dapper ORM中进行一对多映射

   public class Users
 {
    public int Id { get; set; }
    public string Username { get; set; }
    public string Email { get; set; }
    public ContactDetails ContactDetails { get; set; } //child table
}

 public class ContactDetails
{
    public int Id { get; set; }
    public int Mobile { get; set; }
    public string Address { get; set; }
    public int UserId { get; set; }
}

0 个答案:

没有答案