Hi.
I'm evaluating LLBLGen, and I have a question.
My version is 2.0.0.0, and I'm using the SelfServicing template group.
For the project I'm currently working on there is a policy never to delete anything from the database. We just mark objects as inactive/terminated.
In our model there is a PartyEntity and an AddressEntity. Both entities inherit from DataObjectEntity which has a field denoting whether or not the object is terminated.
A PartyEntity can have any number of AddressEntities through a foreign key relationship, so there is a property on PartyEntity called Addresses of the type AddressCollection.
My question is this: Is there any way I can make sure no inactive/terminated addresses are loaded into the collection? I would be nice to solve this once and not let the poor people working on the presentation layer worry about such matters.
That's it. Hope my question isn't too ignorant. I've looked through the documentation and forums, but haven't found quite what I'm looking for