DAO Like Functionality in Adapter?

Posts   
 
    
NickD
User
Posts: 224
Joined: 31-Jan-2005
# Posted on: 04-Apr-2005 20:34:50   

What is the equivalent to the "GetMultiAsDataTable" for the Self Servicing DAO classes in the adapter mode? I haven't had the "AHA!" moment yet with regards to Adapter.

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39933
Joined: 17-Aug-2003
# Posted on: 04-Apr-2005 21:18:11   

NickD wrote:

What is the equivalent to the "GetMultiAsDataTable" for the Self Servicing DAO classes in the adapter mode? I haven't had the "AHA!" moment yet with regards to Adapter.

Yes, use FetchTypedList():

DataTable customers = new DataTable(); adapter.FetchTypedList(new CustomerEntityFactory().CreateFields(), customers, null);

will fetch all customers in the datatable simple_smile

Frans Bouma | Lead developer LLBLGen Pro