Service Stack OrmLite 4.0.34 does not return result set for async version
4.0.34 version of ormlite gives null for an async call
for example
// user1 is not null in this case
var user1 = db.Single(db.From<Users>().Where(x => x.UserPartyId == userPartyId).Select());
// user2 is null in this case
var user2 = await db.SingleAsync(db.From<Users>().Where(x => x.UserPartyId == userPartyId).Select());

This was reported and fixed in: https://github.com/ServiceStack/ServiceStack.OrmLite/pull/426
the fix is available in v4.0.35 that’s now on MyGet:
https://github.com/ServiceStack/ServiceStack/wiki/MyGet
Also please post future issues in: https://github.com/ServiceStack/Issues
This site only for enhancements / feature requests.