sybjeb wrote:
With OfEntityType<ThirdPartyCustomerEntity>()
SELECT `LPA_L2`.`Id`
FROM ( `third_party` `LPA_L1`
LEFT JOIN `third_party_customer` `LPA_L2` ON `LPA_L1`.`Id`=`LPA_L2`.`Id`)
WHERE ( ( ( ( ( `LPA_L2`.`Id` IS NOT NULL) AND EXISTS
(
SELECT `sale_order`.`Id`
FROM ( `third_party`
LEFT JOIN `third_party_customer` ON `third_party`.`Id`=`third_party_customer`.`Id`)
WHERE ( `sale_order`.`FK_third_party_customer_Id_Invoiced` = `LPA_L2`.`Id`)))))
)
Without OfEntityType<ThirdPartyCustomerEntity>()
SELECT `LPA_L2`.`Id`
FROM ( `third_party` `LPA_L1`
LEFT JOIN `third_party_customer` `LPA_L2` ON `LPA_L1`.`Id`=`LPA_L2`.`Id`)
WHERE ( ( ( ( EXISTS
(
SELECT `sale_order`.`Id`
FROM ( `third_party`
LEFT JOIN `third_party_customer` ON `third_party`.`Id`=`third_party_customer`.`Id`)
WHERE ( `sale_order`.`FK_third_party_customer_Id_Invoiced` = `LPA_L2`.`Id`)))))
)
In fact, we already had this discussion on one of my previous thread "LEFT JOIN instead of INNER JOIN when table inherits from another one" and you told me to use Cast method with Linq so I found OfEntityType which seems to be the same on QuerySpec.
With more than 100,000 posts on this forum I don't recall all of them, sorry. As described in the sticky posts on all the forums, please provide all the information needed. I had to puzzle together how things are related in your code/entities. If I also have to re-read all the posts of the user, it will take too much time to answer questions
. So next time, please provide the info needed.
To come back to my initial matter, if I write the WHERE EXISTS query without using inheritance, the query returns me the expected results
SELECT `third_party`.`Id`
FROM `third_party`
WHERE ( ( ( (
EXISTS
(
SELECT `sale_order`.`Id`
FROM `sale_order`
WHERE ( `sale_order`.`FK_third_party_customer_Id_Invoiced` = `third_party`.`Id`)))))
)
I can reproduce this problem in v4.2, using adventure works:
var qf = new QueryFactory();
var sohs = qf.SalesOrderHeader
.CorrelatedOver(SalesOrderHeaderFields.SalesPersonId == SalesPersonFields.EmployeeId)
.Select(SalesOrderHeaderFields.SalesOrderId);
var q = qf.SalesPerson
.Select(() => new { id = SalesPersonFields.EmployeeId.ToValue<int>() })
.WhereExists(sohs);
var results = new DataAccessAdapter().FetchQuery(q);
I have no idea why this is, especially because the original from clause is missing from the query passed to WhereExists, and which causes the problem.
Btw, the new {} in the query passed to WhereExists is irrelevant, you can just pass the field, the projection is ignored.
I'll look into why this fails