Hi everyone,

Great work with DBLinq!

Does DBLinq support nested LINQ queries with postgres?

ex:

//context = sp1

var q = for a in sp1.Users
           select a;

foreach(var User in q)
{
   var subLinq = for log in sp1.Logins
                       where log.User = User.Id
                       select log; //Throws Exception: L33 Only
Supports Open,Closing States, not Open, Fetching


}


Now, I know that I could accomplish those two queries using a join,
however,as efficient as it is, I can do the above with Linq to SQL
Server.

Any thoughts?

Thanks!
-Alan
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to