Ejemplo n.º 1
0
        public async Task Execute(string procedure)
        {
            try
            {
                using var db = new NpgsqlConnection(_dbConnectionString);
                await db.OpenAsync();

                await db.ExecuteAsync(procedure, commandType : CommandType.StoredProcedure);
            }
            catch (NpgsqlException ex)
            {
                var exception = new NisreDbException(ex);
                throw exception;
            }
            catch (Exception e)
            {
                throw new NisreDbException(e);
            }
        }
Ejemplo n.º 2
0
        public async Task <IEnumerable <T> > Query <T>(string procedure, PgParam parameter)
        {
            try
            {
                using var db = new NpgsqlConnection(_dbConnectionString);
                await db.OpenAsync();

                return(await db.QueryAsync <T>(procedure, parameter, commandType : CommandType.StoredProcedure));
            }
            catch (NpgsqlException ex)
            {
                var exception = new NisreDbException(ex, parameter);
                throw exception;
            }
            catch (Exception e)
            {
                throw new NisreDbException(e);
            }
        }
Ejemplo n.º 3
0
        public async Task <T> QuerySingle <T>(string procedure)
        {
            try
            {
                using var db = new NpgsqlConnection(_dbConnectionString);
                await db.OpenAsync();

                return(await db.QuerySingleOrDefaultAsync <T>(procedure, commandType : CommandType.StoredProcedure));
            }
            catch (NpgsqlException ex)
            {
                var exception = new NisreDbException(ex);
                throw exception;
            }
            catch (Exception e)
            {
                throw new NisreDbException(e);
            }
        }
Ejemplo n.º 4
0
        public async Task <IEnumerable <T> > Query <T>(string procedure, bool readOnly, SqlParam parameter)
        {
            try
            {
                var cs = _connectionString;
                _connectionString.ApplicationIntent = readOnly ? ApplicationIntent.ReadOnly : ApplicationIntent.ReadWrite;
                using var db = new SqlConnection(cs.ToString());
                await db.OpenAsync();

                return(await db.QueryAsync <T>(procedure, parameter, commandType : CommandType.StoredProcedure));
            }
            catch (SqlException ex)
            {
                var exception = new NisreDbException(ex, parameter);
                throw exception;
            }
            catch (Exception e)
            {
                throw new NisreDbException(e);
            }
        }
Ejemplo n.º 5
0
        public async Task Execute(string procedure, bool readOnly)
        {
            try
            {
                var cs = _connectionString;
                _connectionString.ApplicationIntent = readOnly ? ApplicationIntent.ReadOnly : ApplicationIntent.ReadWrite;
                using var db = new SqlConnection(cs.ToString());
                await db.OpenAsync();

                await db.ExecuteAsync(procedure, commandType : CommandType.StoredProcedure);
            }
            catch (SqlException ex)
            {
                var exception = new NisreDbException(ex);
                throw exception;
            }
            catch (Exception e)
            {
                throw new NisreDbException(e);
            }
        }