I am using ServiceStack OrmLite SqlServer v3.9.71 and have the following connection string:
<add key="ConnStr" value="Data Source=my-db;Initial Catalog=Users;Integrated Security=SSPI;Connection Timeout=666"/>
and am using the following to run a query which takes 2-3 minutes to come back:
using (Db)
{
var result = new ResultDto();
Parallel.Invoke(
() => { result.StatOne = Db.Dictionary<DateTime, int>(query1); },
() => { result.StatTwo = Db.Dictionary<DateTime, int>(query2); }
);
return result;
}
When putting a break point on the Db object, I can see the connection time out to be 666
but I can't figure out how to set/increase the Command Timeout every time I run the above it times out after 30
seconds which is the default timeout.
Any ideas?
Command Timeout
not aConnection Timeout
. – Greff