I have some entities which contain binary data. I'd like to query this data but skip that binary field so I can download it later on demand. Is that possible somehow?
var query =
from mi in this.entityManager.SYSMailItems
.Include(SYSMailItem.PathFor(x => x.MEMUser))
.Include("SYSMailRecipients.MEMUser")
.Include(SYSMailItem.PathFor(x => x.SYSMailAttachments))
orderby mi.MailItemKey descending
select mi;
I'm talking about SYSMailAttachments.
I understand I can brake this query into 2 and make projection into custom/anon object but I really like to get all this info in one shot and then get binary data separately. Any magic I can use within DevForce?