The code fragment below describes what I want to do using queries but it blows up with the above error.
There is a 1 to many relationship between Buildings and AttributeValues and my aim is to find all Buildings which have an AttributeValue of "Large" and an AttributeValue of "Blue".
var attributeValueAlias1 = new AttributeValue();
var attributeValueAlias2 = new AttributeValue();
var result = repository
.CreateCriteriaFor<Buildings>()
.Join(o=>o.AttributeValues, ()=> attributeValueAlias1)
.Join(o=>o.AttributeValues, ()=> attributeValueAlias2)
.Add(() => attributeValueAlias1.Value == "Large")
.Add(() => attributeValueAlias2.Value == "Blue")
.List();
There are few posts out there but none with a solution to the problem described here and here.
I can make it so a membership test is added using criteria.GetCriteriaByAlias(alias) before adding the alias so the Duplicate alias error does not occur but then there is only a single join and it results in a SQL where clause which will never be true
SELECT *
FROM Buildings this_
inner join AttributeValues attributev1_
on this_.Id = attributev1_.BuildingId
WHERE
attributev1_.Value = 'Large'
and attributev1_.Value = 'Blue'
It is not a complicated or unusual query so I'd be surprised if there isn't a work around.