What .Net orms or MicroOrms support async operations and PostgreSql

后端 未结 7 1941
太阳男子
太阳男子 2021-01-18 06:25

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

7条回答
  •  别那么骄傲
    2021-01-18 06:56

    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...

提交回复
热议问题