When executing stored procedures using ORM in the
following way "DataSet ds =
StoredProcedures.PROC_NAME ();" I will get a timeout
error if it takes longer than 30 seconds.
Using the exposed "dm.CommandTimeout" property
doesn't work when using stored procedures.
The only way that I was able to extend the timeout was
to modify the StoredProcedures generated class and
change "private static DataManager dm;" to "public
static DataManager dm;" Then I could do something like
StoredProcedures.dm.CommandTimeout = ###;
So, my request would to be to expose the DataManager
object insided the StoredProcedures class.
Thanks.