These are the two overloads
public DataTable ExecuteMultiRowDataTableRetrievalQuery(
IRetrievalQuery queryToExecute,
DbDataAdapter dataAdapterToUse,
IEntityFields fieldsToReturn)
public virtual bool ExecuteMultiRowDataTableRetrievalQuery(
IRetrievalQuery queryToExecute,
DbDataAdapter dataAdapterToUse,
DataTable tableToFill,
IEntityFields fieldsToReturn)
You just need to override the second, as the first actually calls the second one.
IowaDave wrote:
We override the retrieval methods so we can add our error/retry logic, an important part of our application.
Could you post the example of what were you doing on error/retry logic? maybe there's a better way of doing that in v2.6.