I want to use a micro-orm and decided to go with Dapper.
But can't seem to find any mentions of it supporting the new async/await syntax. Async queries are important for me.
Can someone provide a code example of an async query being made with Dapper using the await keyword ?
Dapper when targeting .NET 4.5 has full support for TPL usage, via the methods ending in *Async - QueryAsync etc. Specifically, the .NET 4.5 build includes this extra set of methods