수색…
저장 프로 시저 호출
public async Task<Product> GetProductAsync(string productId)
{
using (_db)
{
return await _db.QueryFirstOrDefaultAsync<Product>("usp_GetProduct", new { id = productId },
commandType: CommandType.StoredProcedure);
}
}
저장 프로 시저 호출 및 결과 무시
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
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow