Hello,
I'm using LLBL v2.5, 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.
Yet 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 seems to be acting as an inner join?
Is there a way around this?