Hi,
I have created a typed list with some weak relations (left joins). In some cases I would like to make them strong. The problem is that I cannot access these relations.
MyTypedList typedList = new MyTypedList();
IRelationPredicateBucket filter = (IRelationPredicateBucket)typedList.GetRelationInfo();
filter.Relations doesn't have an "Items" property.
Even when I would be able to access the relation-objects, the "IsWeak"-property is readonly.
So, I thought maybe I can remove the relations and add them again with JoinHint.Inner. But also, in order to remove the relation, I would need to find it in the collection.
I'm using the latest runtime-libraries. I hope someone can suggest a solution.
Thanks!
René