l2sql

Why is my IQueryable LINQtoObject being treated as LINQtoSQL and throwing no supported translation to SQL

I have a LINQ dbml class that I am wrapping in a POCO. I have built overloaded constructors that take the DBML class and init. the wrapper objects properties based on the dbml object passed in. For example public class MyPerson{ public MyPerson(DBMLPerson p) { this.ID = p.ID; this.Name = p.Name; } } if I the...