Hi,
In the past, if I've got a complex query that does some joins and returns fields from several tables, rather than create a view and generate an entity from it, I would just return a dynamic list.
So is it possible to have Linq to LLBLGen return a dynamic list?
I'd thought I'd be able to return from my business layer a collection of an anonymous type but (and please correct me if I'm wrong) you can only return a collection of such items from a method as a basic 'object'. (i.e. not strongly typed) so I figured I'd be better of with a good old dynamic list!
Cheers, I.