I have 3 tables in Sql Server, one-to-one relationships.
The key is Indice in all 3 tables.
The 3 entities:
public class Client
{
public int Indice { get; set; }
public string Name { get; set; }
public string Surname { get; set; }
public string Company { get; set; }
public string Tel1 { get; set; }
public string Tel2 { get; set; }
}
public class CallClient
{
public int Indice { get; set; }
public string CallDateTime { get; set; }
public string Status { get; set; }
}
public class ResponsePollClient
{
public int Indice { get; set; }
public string Question1 { get; set; }
public string Question2 { get; set; }
public string Question3 { get; set; }
public string StatusPoll { get; set; }
}
I have this main entity
public class DataClient
{
public Client client { get; set; }
public CallClient callClient { get; set; }
public ResponsePollClient pollClient { get; set; }
}
The SQL:
select c.Indice, .... , cc.Indice, ... , pc.Indice, ...
from Client c
inner join CallClient cc on c.Indice = cc.Indice
inner join PollClient pc on c.Indice = pc.Indice
How can I use Dapper for fill the List entity ?
The following code should map your pocos: