sorry for my English first!
ex:
there is 2 tables : Sc and ScItem
I want to design a report to print(preview) the "Order Detail Report"
And Query command would be like that:
select * from Sc left join ScItem where Sc.ScNo = ScItem.ScNo
or
select * from Sc, ScItem where where Sc.ScNo = ScItem.ScNo
then I will get a result and this result is a table but not 2 tables.
such as query command,
how could I implement through LLBLGen and to use this Entity ?
Hope you know my question.