string id = "1313-A";var query = data.Query<Individual>() .Where(x => x.Id == $"individuals/{id}") .Include(x => x.BusinessesIds) .Select(x => new { Name = $"{x.FirstName} {x.LastName}", Businesses = data.Query<Business>() .Where(y => y.Id.In(x.BusinessesIds)) .Select(y => new { Name = y.LegalName }) });--
You received this message because you are subscribed to the Google Groups "RavenDB - 2nd generation document database" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ravendb+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ravendb/16fd7197-2190-4104-b897-3f63889667d5%40googlegroups.com.
![]() | Arkadiusz Paliński Team Leader / Hibernating Rhinos LTD
|
To unsubscribe from this group and stop receiving emails from it, send an email to rav...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ravendb/16fd7197-2190-4104-b897-3f63889667d5%40googlegroups.com.
var query = data.Query<Individual>() .Where(x => x.Id == $"individuals/{id}") .Select(x => new BusinessListModel { CustomerName = $"{x.FirstName} {x.LastName}", Businesses = x.BusinessesIds.Select(y => new BusinessListModel.BusinessModel { Name = RavenQuery.Load<Business>(y).LegalName, // Here! Document = RavenQuery.Load<Business>(y).Document // And here! }) })To unsubscribe from this group and stop receiving emails from it, send an email to rav...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ravendb/16fd7197-2190-4104-b897-3f63889667d5%40googlegroups.com.
let c = RavenQuery.Load<Company>(o.Company)
To unsubscribe from this group and stop receiving emails from it, send an email to ravendb+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ravendb/8f86ff6b-cd46-4a8a-b440-c9c20ebf6c31%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ravendb/8f86ff6b-cd46-4a8a-b440-c9c20ebf6c31%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to ravendb+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ravendb/173bec77-0ff6-4589-ba34-6abe87f57ac7%40googlegroups.com.