I'm trying to start SQL backup through a stored procedure through Dapper (the rest of my application uses Dapper, so I would prefer this part to work through it as well). It works fine until CommandTimeout appears.
using (var c = SqlConnection(connstring)) { c.Open(); var p = new DynamicParameters();
The only CommandTimeout parameter that I know of is in SqlCommand. Is there any way to install this through Dapper?
sh-beta Jan 09 '12 at 20:36 2012-01-09 20:36
source share