Hi,
I have a case where I have an Entiy (Fund) that has a child EntityCollection (FundFeesCollection). The FundFees has three types of fees that I need to display in three seperate grids.
I am creating a Wiard style interface that needs to edit the child (FundFess) collection.
Solution 1: Created 3 EntityViews from the child EntityCollection FundFees each one with its own filter. I wanted to have 3 LLBLDatasources one for each grid BUT the problem is the LLBLDataSource cannot have EntityView as a DataSource
Solution 2: Create 3 EntityCollections and copied to each one of them entities from the child (FundFeesCollection) that has a certain FundFeeType.
Problem is the PerformWork event's UOW does not have the Updated/Deleted entities??