Example #1
0
        protected override IDbCommandBuilder CreateDbCommandBuilder(DbConnectionManager <SqlConnection> connectionManager)
        {
            SqlDbCommandBuilder commandBuilder = new SqlDbCommandBuilder(connectionManager);

            commandBuilder.CommandTimeOutSeconds = this.CommandTimeOut;
            return(commandBuilder);
        }
 protected override IDbCommandBuilder CreateDbCommandBuilder(IDbConnection connection)
 {
     SqlDbCommandBuilder commandBuilder = new SqlDbCommandBuilder(connection);
     commandBuilder.CommandTimeOutSeconds = this.CommandTimeOut;
     return commandBuilder;
 }