Hi.. Can anyone help me out with this..
I am using Adapter templates and LLBLGenPro v2.5
I have the following table structure
Table1
Table1ID int PK
Table1Name varchar(50)
Table1Description varchar(250)
and i have a custom DTO class
class Table1DTO
{
int _id;
string _name;
string _description;
}
I want to create an object of Table1Entity (generated by LLBLGen) by passing it an ID, and map its contents to an object of my Table1DTO class
Thanks in advance