protected override DbCommand CreateStoreCommand(string commandText, DbTransaction transaction, RelationalTypeMapper typeMapper, int? commandTimeout)
 {
     globalCommandTimeout = commandTimeout;
     return base.CreateStoreCommand(commandText, transaction, typeMapper, commandTimeout);
 }
Exemplo n.º 2
0
        protected DatabaseBuilder([NotNull] RelationalTypeMapper typeMapper)
        {
            Check.NotNull(typeMapper, "typeMapper");

            _typeMapper = typeMapper;
        }