On this page:
http://bltoolkit.net/Doc.LinqAssociations.ashx the
example with OrderDetails leads me to believe that one to many
associations are possible, but every time I try I get:
No coercion operator is defined between types 'MyType' and
'System.Collections.Generic.List`1[MyType]'.
In none of the unit tests I could find an example that would do this.
Here's an example of what I'm talking about:
from p in Parent
where p.Id == 123
select new { p.Name, p.Children }
So basically it would return the name of the parent and a list of
Child objects. Is this possible with BLToolkit? Thanks.