简体   繁体   中英

How to async join tables in RavenDB

I need to do query from two raven db tables. I found almoust perfect solution in documentation, only problem is im using async session and have no idea what is async equivalent.

var q = from order in dq
let company = session.Load<Company>(order.Company)
select new
{
    order.Freight,
    company.Name
    
};

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM