What ORM\'s support async operations and postgresql ?
I prefer simple MicroOrms like Dapper and OrmLite because they seems to have great performance and they are rea
Just stumbled upon this new ORM called Insight.Database and they claim to support async queries:
List beerMenu = await Database1.AsyncQuery("FindBeer", new { Name = "Sly Fox" });
I did not try it yet...