Walaa wrote:
I'm not sure about the types of relations you have specified.
So please post the SQL query you need to execute then I can help you implementing it with LLBLGen code.
Tip: PrefetchPaths are used to fetech related objects/entities (graph of entities). But as far as I can tell you need to filter upon a related entitiy. So prefetchPaths are irrelevant here.
Thanks for the reply. Unfortunately, I can't spend the time right now to give you the DDL. It is very complex and that is why I posted the pseudo code. I don't have the SQL query for this either.
I will try to explain the concept as best I can.
The Application is the root object.
It has a collection of CreditTx (transactions).
The CreditTx has a collection of Applicant (people).
Given the input of a SSN (social security number), I need to find all Applications, whose most recent transaction, has any applicant with that SSN.
So, for an example, Applicant A has SSN=1234. They are included in a CreditTx transaction dated July 2010 that is connected to Application P. In that same Application P, there is a later CreditTx transaction dated August 2011, with Applicant B who has SSN=5678. If I run the Duplicate Checker in this case with an SSN input of 1234, it should not detect Application P as a duplicate, because there is a later transaction with a different SSN.
It would appear from your response, that there might be a different way to get the most recent transaction, other than using a PrefetchPath with a SortExpression. If that is the case, please provide some guidance (links or code) that would help me filter first on the most recent Transaction (using a Date field), and then again on the SSN (string).
Thank you again for your help.