Tommy

Results 1 issues of Tommy

I am using the `QueryAsync` method with `CommandFlags.None` so it will not be buffered. ```cs CommandDefinition command = new CommandDefinition("SELECT 1", flags: CommandFlags.None); IEnumerable results = await connection.QueryAsync(command); foreach (bool...