Hi all,
When i run a join query, like the following example:
var dbItems =
(from a in db.Orders
from b in db.OrderSections
from c in db.Tickets
where a.Order1 == b.Order
where b.OrderSection1 == c.OrderSection
where c.Event == eventID
select a);
i get the following run-time error:
Argument type 'DbLinq.Data.Linq.Table`1
[TixSmart.BoxOffice.Local.DL.OrderSection]' does not match the
corresponding member type 'TixSmart.BoxOffice.Local.DL.OrderSection'
it's happening at NewExpressionMutator line 48.
i've tried this on a couple different queries that look similar and
they're all getting the same error (the types are different, but the
message is the same).
has anyone seen this?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"DbLinq" 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/dblinq?hl=en
-~----------~----~----~----~------~----~------~--~---