I need return a list from dapper with the new tuple in C# 7....public static List<(int StyleId, decimal StyleCode)> GetOnlyServices()
{
var query = $@" SELECT
ST.style_id as StyleId, ST.style_code as StyleCode
....
I'm doing the following query using dapper and C#7 ValueTuples (installed nuget):...await connection.QueryAsync<(int, Guid)>(
$@"SELECT tenant, pid FROM Table
ORDER BY id
OFFSET {skip} ROWS
...