Answer the question
In order to leave comments, you need to log in
c# mapping oracle-tables master-detail
There are two tables Master and Detail, one-to-many related.
There are corresponding DTO classes for them.
Moreover, the Master class has a field containing a list of objects from the Detail table:
public class Master
{
public int Id { get; set; }
public DateTime Date { get; set; }
public List<Detail> listDetail
}
public class Detail
{
public string sql_text { get; set; }
}
Answer the question
In order to leave comments, you need to log in
Is it not an option to make a Left Join in the database and then assemble it into the desired structure in the RAM?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question