Buscar..


Sintaxis

  • conn.Execute (sql, transaction: tran); // especifique el parámetro por nombre
  • conn.Execute (sql, parameters, tran);
  • conn.Query (sql, transaction: tran);
  • conn.Query (sql, parameters, tran);
  • await conn.ExecuteAsync (sql, transaction: tran); // asíncrono
  • await conn.ExecuteAsync (sql, parameters, tran);
  • await conn.QueryAsync (sql, transaction: tran);
  • await conn.QueryAsync (sql, parameters, tran);

Usando una Transacción

Este ejemplo utiliza SqlConnection, pero se admite cualquier IDbConnection.

También se admite cualquier IDbTransaction desde la IDbConnection relacionada.

public void UpdateWidgetQuantity(int widgetId, int quantity)
{
    using(var conn = new SqlConnection("{connection string}")) {
        conn.Open();

        // create the transaction
        // You could use `var` instead of `SqlTransaction`
        using(SqlTransaction tran = conn.BeginTransaction()) {
            try
            {
                var sql = "update Widget set Quantity = @quantity where WidgetId = @id";
                var parameters = new { id = widgetId, quantity };

                // pass the transaction along to the Query, Execute, or the related Async methods.
                conn.Execute(sql, parameters, tran);

                // if it was successful, commit the transaction
                tran.Commit();
            }
            catch(Exception ex)
            {
                // roll the transaction back
                tran.Rollback();

                // handle the error however you need to.
                throw;
            }
        }
    }   
}

Acelerar las inserciones

Ajustar un grupo de inserciones en una transacción los acelerará de acuerdo con esta Pregunta / Respuesta de StackOverflow .

Puede usar esta técnica, o puede usar Copia masiva para acelerar una serie de operaciones relacionadas para realizar.

// Widget has WidgetId, Name, and Quantity properties
public void InsertWidgets(IEnumerable<Widget> widgets)
{
    using(var conn = new SqlConnection("{connection string}")) {
        conn.Open();

        using(var tran = conn.BeginTransaction()) {
            try
            {
                var sql = "insert Widget (WidgetId,Name,Quantity) Values(@WidgetId, @Name, @Quantity)";
                conn.Execute(sql, widgets, tran);
                tran.Commit();
            }
            catch(Exception ex)
            {
                tran.Rollback();
                // handle the error however you need to.
                throw;
            }
        }
    }   
}


Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow