wait. Is there a way to do this using joins?

like 
            IQueryOver<IntegrationMessageHistory> SubQuery =
                myDB.Session.QueryOver<IntegrationMessageHistory>()
                .Where(r => !string.IsNullOrEmpty(r.Notes))
                .OrderBy(r => r.AuditDate).Desc
                .Take(1);

...and somehow joining the *Notes* column from *SubQuery* to the end of an 
<IntegrationMessage>?
The <IntegrationMessageHistory> list *is* in the <IntegrationMessage> 
object.

I see some examples, but am a little baffled how to tack a string onto the 
end of an <IntegrationMessage>.

>
>

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/nhusers.
For more options, visit https://groups.google.com/d/optout.

Reply via email to