Why only QueryAsync method have mulit mapping method overload with CommandDefinition #743
Open
Description
The QueryAsync method have mulit mapping method overload with CommandDefinition
public static Task<IEnumerable<TReturn>> QueryAsync<TFirst,..., TReturn>(this IDbConnection cnn, CommandDefinition command, Func<TFirst,...TReturn> map, string splitOn = "Id");
But the Query method has no CommandDefinition method overload. what is the purpose for this design ?
dapper version = 1.50.2
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Dapper" version="1.50.2" targetFramework="net461" />
</packages>