I have a ValuationEntity which has AssetID, ValuationDate, Value fields.
There is also an AssetEntity which has PolicyEntity derived from it. Asset.ID is related to Valuation.AssetID as a 1:many.
What I need to do is write a DynamicQuery to grab a couple of Fields from Policy and the ValuationDate and Value fields from the Valuation table for the latest Valuation for that Asset (if any).
This SQL gives the right sort of result:-
SELECT
p.ID,
p.PolicyNumber,
v.ValuationDate,
v.Value
FROM Policy p
LEFT JOIN Valuation v ON v.AssetID = p.ID
WHERE v.ID IS NULL OR v.ID =
(SELECT TOP 1 v2.ID
FROM Valuation v2
WHERE v2.AssetID=p.ID
ORDER BY v2.ValuationDate DESC, v2.ID DESC)
but I don't know if it is even possible to translate it to QuerySpec or just me doing it wrong.
My QuerySpec attempt was
var query = qf.Policy
.From(QueryTarget.LeftJoin(ValuationEntity.Relations.AssetEntityUsingAssetID))
.Where(PolicyFields.ID == requiredPolicyIDs)
.AndWhere(ValuationFields.ID == DBNull.Value | ValuationFields.ID == qf.Valuation
.TargetAs("v2")
.Where(ValuationFields.AssetID.SetObjectAlias("v2") == PolicyFields.ID)
.OrderBy(ValuationFields.ValuationDate.SetObjectAlias("v2") | SortOperator.Descending, ValuationFields.ID.SetObjectAlias("v2") | SortOperator.Descending)
.Limit(1)
.Select(ValuationFields.ID.SetObjectAlias("v2").ToValue<int?>())
)
.Select(() =>
new
{
ID = PolicyFields.ID.ToValue<int>(),
Number = PolicyFields.PolicyNumber.ToValue<string>(),
CurrentValuationDate = ValuationFields.ValuationDate,
CurrentValuation = ValuationFields.Value
}
);
So how can I achieve what I mention in the second paragraph?
(Using LLBLGen 4.2 Final and Sql Server)