Hi all,
In some of my entities, I'm using a virtual delete (bit field). In a self-servicing project, where is the best place to filter out deleted entities?
Basically:
MyCollection as new MyEntityCollection <-- should not retrieve any "deleted" entities
MyEntity.MyCollection <-- should not retrieve any deleted entities
Any place where I can add a base predicate filter to my entities?
Thanks!