Hello,
I'm trying to upgrade from v2.5 to v2.6, adapter version.
I've created a TypedList for a table called Sites which has a (1:n) relation to a table called Siteaddresses. The TypedList contains fields for both tables including SiteName and SiteAddressLine1, etc.
The relation has a description of: Site.Idsite - Siteaddresses.Idsite (1:n) - with a 'left' join hint.
The problem is that I want to see address information in the list only when Siteaddressess.Idtypeofaddress = 2, otherwise I don't want the address information to be in the list however I still want to see the site information.
When I apply a predicate expression like the following:
filter.PredicateExpression.Add(SiteaddressFields.Idtypeofaddress.SetObjectAlias("Siteaddresses") == 1);
The predicate will filter out any sites that don't have corresponding addresses of type 1; it becomes an inner join.
I had this working in v2.5 after posting a question here: http://www.llblgen.com/tinyforum/Messages.aspx?ThreadID=14022
Now a week later I'm having this problem again.
Specifically, I'm having problems because the CustomFilter() method seems to have disappeared from filter.Relations[x] in v2.6.
So the line:
filter.Relations[0].CustomFilter = new PredicateExpression(
SiteaddressFields.Idtypeofaddress.SetObjectAlias("Siteaddress") == typeOfAddressID);
Now generates an error.
I've tried casting the IRelationCollection as IEntityRelations as in:
IPredicateExpression customFilter = new PredicateExpression();
customFilter.Add(SiteaddressFields.Idtypeofaddress.SetObjectAlias("Siteaddress") == typeOfAddressID);
foreach (IEntityRelation relation in filter.Relations)
{
if (relation.AliasRightOperand.Equals("Siteaddress"))
{
relation.CustomFilter = customFilter;
break;
}
}
And using the CustomFilter() there but, while this compiles and runs, it results in an Inner Join that doesn't work for me.
Any help would be appreciated.
Wm