Let binding LLbl gen object

Posts   
 
    
Posts: 24
Joined: 26-May-2011
# Posted on: 01-Jun-2011 12:06:17   

Hello I try to use late binding concept for database synch (dainamicly). I required getting instance of Entity Collection and it’s functionality of GetMulty.

By the way I can know Entity name from enum Entity Type

Spouse I know Entity Collection name as "EmployeeEntityCollection"

Please guide me to get the approach.

Thanks you.

Walaa avatar
Walaa
Support Team
Posts: 14995
Joined: 21-Aug-2005
# Posted on: 01-Jun-2011 12:30:32   

I'm not sure I understand your question.

Posts: 24
Joined: 26-May-2011
# Posted on: 01-Jun-2011 15:11:24   

Hello Thanks for your review, I required late binding of object, i.e. Employee Entity. But I try to avoid direct use of Employee Entity and it is Field object, because my requirement is not for a specific entity.

I want to take "enum EntityType" as basic root for flow of program. Then I can know Entity Name that is only a string variable; can I produce particular Entity (with the help of CommonEntityBase)...

I think you will get the idea what I aiming (Data Synch).

Walaa avatar
Walaa
Support Team
Posts: 14995
Joined: 21-Aug-2005
# Posted on: 01-Jun-2011 15:56:09   

I guess you are looking for a way to create an entityCollection from the EntityType Name. If so then please check the following thread for code samples: http://www.llblgen.com/tinyforum/Messages.aspx?ThreadID=17964

Posts: 24
Joined: 26-May-2011
# Posted on: 03-Jun-2011 08:40:13   

Thanks you , It is worksimple_smile .