我正在尝试使用 Dapper 的多重映射功能来返回 ProductItems 和关联客户的列表。
[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。我是否误解了多映射功能的核心功能?我不想每次都添加完整的列名列表。