我正在尝试使用dapper的Multimapping功能返回ProductItems和关联的Customer的列表。
[Table("Product")]
public class ProductItem
{
public decimal ProductID { get; set; }
public string ProductName { get; set; }
public string AccountOpened { get; set; }
public Customer Customer { get; set; }
}
public class Customer
{
public decimal CustomerId { get; set; }
public string CustomerName { get; set; }
}
我的小巧的代码如下
var sql = @"select * from Product p
inner join Customer c on p.CustomerId = c.CustomerId
order by p.ProductName";
var data = con.Query<ProductItem, Customer, ProductItem>(
sql,
(productItem, customer) => {
productItem.Customer = customer;
return productItem;
},
splitOn: "CustomerId,CustomerName"
);
这可以正常工作,但是我似乎必须将完整的列列表添加到splitOn参数中以返回所有客户属性。如果我不添加“ CustomerName”,则返回null。我是否错过了多重映射功能的核心功能。我不想每次都添加一个完整的列名列表。