桌子:
create table Documents
(Id int,
SomeText varchar(100),
CustomerId int,
CustomerName varchar(100)
)
insert into Documents (Id, SomeText, CustomerId, CustomerName)
select 1, '1', 1, 'Name1'
union all
select 2, '2', 2, 'Name2'
课程:
public class Document
{
public int Id { get; set; }
public string SomeText { get; set; }
public Customer { get; set; }
}
public class Customer
{
public int Id { get; set; }
public string Name { get; set; }
}
我怎样才能用 Dapper得到Documents
他们的所有东西?Customers
这给了我所有的文件,但客户是空的(当然):
connection.Query<Document>("select Id, SomeText, CustomerId, CustomerName from Documents")...
编辑 - 类似但更高级的映射问题:Dapper intermediate mapping