Perhaps I could have done this differently.
I have 2 entities A and B with A : B = 1 : n.
I have a gridview in which I want to showB and two fields from A. I achieved this by adding two properties to B presenting the field from A. Doing that enabled me to use LLBLGenProDataSource and show the fields in the view. For the order in which the entities are displayed I also added the new properties to the sorter. It would only work with clientside sort on.
In the pre-LLBLGenPro days I would create a StoredProcedure that returned all the fields necesary in the order required.
Is the way I have build it, the way I should? Or is there a better alternative (whitout using extra views or stored procs).