Hi,
I am using Dblinq 0.1.7. I can't get the 3 tables join to work (2
tables join is fine)
This is the error I'm getting: Object reference not set to an instance
of an object.
Is it a bug in this particular version? is it fixed in later version?
(I can't find the documentation for bug fixes in releases)
Here's my code:
var s = from rd in context.RegionDetails
join r in context.Regions on rd.RegionID
equals r.RegionID into tregion
join tcr in context.ReceivedFromCollectors on
rd.FSa equals tcr.PostalCode1 into tRegDetail
select new {rd};
Thanks in advance
-dg
--
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.