Skip to content

Commit d273ac1

Browse files
committed
fix breaking change
1 parent 910ae0b commit d273ac1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Griddly.Mvc/Results/DapperResult.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public abstract class DapperResult<T> : GriddlyResult<T>
2424
protected bool _fixedSort;
2525
protected static readonly bool _hasOverallCount = typeof(IHasOverallCount).IsAssignableFrom(typeof(T));
2626

27-
public DapperResult(Func<IDbConnection> getConnection, string sql, object param, Func<IDbConnection, IDbTransaction, string, object, IEnumerable<T>> map, Action<IDbConnection, IDbTransaction, IList<T>> massage, bool fixedSort, Func<IDbTransaction> getTransaction, string outerSqlTemplate, int? commandTimout)
27+
public DapperResult(Func<IDbConnection> getConnection, string sql, object param, Func<IDbConnection, IDbTransaction, string, object, IEnumerable<T>> map, Action<IDbConnection, IDbTransaction, IList<T>> massage, bool fixedSort, Func<IDbTransaction> getTransaction, string outerSqlTemplate, int? commandTimout = null)
2828
: base(null)
2929
{
3030
_getConnection = getConnection;

0 commit comments

Comments
 (0)