ServiceStack “new” api and async await
ServiceStack version 3 I'm quite familiar with https://github.com/ServiceStack/ServiceStack/wiki/New-API and on this page it specifically says "All these APIs have async equivalents which you can use instead, when you need to." Is it possible to use async await with ServiceStack's new api? What would the server and client code look like with async await? [Route("/reqstars")] public class AllReqstars : IReturn<List<Reqstar>> { } public class ReqstarsService : Service { public List<Reqstar> Any(AllReqstars request) { return Db.Select<Reqstar>(); } } Client var client = new JsonServiceClient