Dapper-Extensions
Dapper-Extensions copied to clipboard
DapperAsyncExtensions DeleteAsync bug
/// <summary>
/// Executes a delete query using the specified predicate.
/// </summary>
public static Task<bool> DeleteAsync<T>(this IDbConnection connection, object predicate, IDbTransaction transaction = null, int? commandTimeout = null) where T : class
{
return Instance.DeleteAsync(connection, predicate, transaction, commandTimeout);
}
You should call
///
Didn't get it. Why removing the generics and the result type? What is this bug? What's the error that is happening?