Async odbc seems to be synchronous
问题 I'm trying to do async database queries, but when I test my code it appears to be synchronous. I've isolated the issue to my Query function. Can't figure out what I'm doing wrong, I'm pretty new to the aync/await functionality so it's possible that I've done something stupid :) This is the failing code: (i'm using a local install of postgresql) public static void Main() { Task.Run(async () => await MainAsync()).GetAwaiter().GetResult(); } public static async Task MainAsync() { await