Hi,
The GUI is just a gridview with columns that represent a collection of properties.
code as follows
<llblgenpro:LLBLGenProDataSource ID="PropertyDataSource" runat="server"
DataContainerType="EntityCollection"
EntityCollectionTypeName="MyDatabase.CollectionClasses.PropertyCollection, MyDatabase">
</llblgenpro:LLBLGenProDataSource>
<asp:GridView ID="PropertyGridView" runat="server" AutoGenerateColumns="False"
DataKeyNames="PropertyId" DataSourceID="PropertyDataSource">
<Columns>
.
.
.
</Columns>
</asp:GridView>
The problem is that I cannot just add a SelectParmeter to filter the PropertyCollection by ClientID, because its a many-many relationship as described in the original post.