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