Hi,

I've compiled revision #1272, and would like to use the following:

var items = from incomes in db.Incomes
join items in db.Items on incomes.ItemID equals incomes.ID
join prices in db.Prices on item.ID equals prices.ItemID
where prices.Price > 1000
orderby items.ModDate descending
select new { incomes, items, prices };


and it throws an ArgumentException on "New" in SqlProvider.cs @ line
314.

How can I make it work?

Thanks,

b.

--

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


Reply via email to