using System.Linq; On Wed, Dec 3, 2008 at 03:27, bryan costanich <[EMAIL PROTECTED]>wrote:
> > Hi all, > > i tried using the following query today with DbLinq: > > var dbItems = > (from a in db.Orders > from b in db.OrderSections > from c in db.Tickets > where a.Order = b.Order > where b.OrderSection = c.OrderSection > where c.Event == eventID > select a); > > and i get the error: > > Could not find an implementation of the query pattern for source type > 'DbLinq.Data.Linq.Table<TixSmart.BoxOffice.Local.DL.Order>'. > 'SelectMany' not found. Are you missing a reference to > 'System.Core.dll' or a using directive for 'System.Linq'? > > i have a reference to DbLinq and DbLinq.MySql, and a working linq > classes of my database that i created in dbmetal or whatever. > > what am i missing? > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
