48
1
// @nuget: Dapper -Version 1.60.6
2
using Dapper;
3
using System;
4
using System.Data.SqlClient;
5
using System.Linq;
6
7
public class Program
8
{
9
public class Customer
10
{
11
// 不存在无参构造函数,自动映射(默认显式转换)
12
// 存在含参构造函数,查找对应类型,对应参数的构造函数(此处不会默认显式转换,比如枚举)
13
// 对于 mysql tinyint(4) -> sbyte
14
// 存在无参构造函数,无参构造函数会执行,但是以最终映射为准
15
// 结论 -> Dapper Dto 如果需要含参构造函数,也要默认写一个无参构造函数
16
//public Customer(){}
17
18
public Customer(int customerID,string customerName, long x)
19
{
20
CustomerID = customerID;
21
CustomerName = customerName;
22
X = x + 5;
23
}
24
public int CustomerID {get;set;}
Cached Result