jonpryor / dblinq2007

Automatically exported from code.google.com/p/dblinq2007
0 stars 0 forks source link

query bug from GroupBy+SelectMany #256

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
execute following code
var res=  db.Customers.GroupBy(a => a.City).SelectMany(a => a).ToList();

Error message:
S0358: Don't know how to handle this SelectMany() overload (2 parameters)

version: DbLinq-0.20.1

Original issue reported on code.google.com by huqian...@gmail.com on 2 Jun 2010 at 9:55