Hi,
I have a TypedList having a left join on a table.
In the table i would like use this left join to add a CustomFilter.
I have this code:
ProductViewTypedList vProduct = new ProductViewTypedList();
IRelationPredicateBucket filter = vProduct.GetRelationInfo();
PredicateExpression pExpr = new PredicateExpression();
pExpr.AddWithAnd(ProductPricesFields.ProductID== 1);
(filter.Relations[1] as IEntityRelation).CustomFilter = pExpr;
This works fine, but i don't really like the index number hardcoded, because what if the TypedList changes, i will have to remember that i put a "1" somewhere, which I will forget most likely
.
So my question: Is there another way to get the right relation?
Thnx in advance.