Hello, firs of all i don“t know english very well, take it easy
please.

I need some help to create searches that involve many tables, like
Join On.

I tried using LINQ, something like this:

        Dim resultado = (From l In session.Linq(Of ListPrices)() Where
l.Id = idList Join _
                        i In session.Linq(Of ItemPrice)() _
                        On i.ListPrices Equals l _
                         Select i Where
i.Configuration.Color.Name.Equals(color) _
                        AndAlso
i.Configuration.Paper.Name.Equals(paper) _
                        AndAlso i.Configuration.Size.height = height _
                        AndAlso i.Configuration.Size.width =
largura).ToList

the error mensage i got is: "The method Join is not implemented."

Can anyone help me? Thx!

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en.

Reply via email to