Dapper.NET
Utiliser Async
Recherche…
Appeler une procédure stockée
public async Task<Product> GetProductAsync(string productId)
{
using (_db)
{
return await _db.QueryFirstOrDefaultAsync<Product>("usp_GetProduct", new { id = productId },
commandType: CommandType.StoredProcedure);
}
}
Appeler une procédure stockée et ignorer le résultat
public async Task SetProductInactiveAsync(int productId)
{
using (IDbConnection con = new SqlConnection("myConnectionString"))
{
await con.ExecuteAsync("SetProductInactive", new { id = productId },
commandType: CommandType.StoredProcedure);
}
}
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow