I am using the Entrprise Library to Get Records from Oracle11g as below.
OracleDataProviderCommand dbcommand=new OracleDataProviderCommand();
//OracleDataProviderCommand has been derived from System.Data.Common.DbCommand.
...Adding Parameters...
//Executing the dbCommand using Enterprise Libary's ExecuteDataSet(DbCommand command) method as below,
DataSet Results = database.ExecuteDataSet(dbCommand);
Finally I am iterating through the data Table's and Creating the List returning from the Service. I got struct with a Huge Performance problem since the DataSet returning only 64KB(Default Fetch size) of Data from the DB per cycle.
My question is How to Improvise the Performance of DataSet to List Conversion. And If this because of FetchSize then how to set FetchSize.?
Thanks in Advance,