Using 2.6, Adapter, VS2008
After developing a few projects in a quite risk free setup using llblgen i'mexploring some posibilities to "really" use LLBLGen i'm stuck now on inherited EntityCollections
I want to kind of apply the repository pattern on entityCollections and therefore inherit from entitycollection and add some features.
Basically for example :
public class OrderDetailRepository : EntityCollection<OrderDetailEntity>
{
//some properties typically for OrderDetails like Sum ....
}
Now if i create a class like LoadOrders i want to use a prefetchpath and when using this prefetch path OrderDetails is an entityCollection but i would like to see it a "OrderDetailRepository" is there a way to achieve this quite easily ?
M.