Hi,
I have a very simple LINQ to LLBLGen expression to get the minimum date in a certain table:
LinqMetaData data = new LinqMetaData();
var results = (from x in data.RdcMutaties
select x).Min(p => p.MutatieDatum);
This code fails with the following exception:
ORA-00904: "LPA_L1"."MUTATIE_DATUM": invalid identifier
This error is due to the generated SQL:
SELECT *
FROM (SELECT DISTINCT MIN **("LPA_L1"."MUTATIE_DATUM") **AS "LPAV_"
FROM (SELECT "LPLA_1"."ID" AS "Id",
"LPLA_1"."KENTEKEN" AS "Kenteken",
"LPLA_1"."POSTCODE" AS "Postcode",
"LPLA_1"."MUTATIE_DATUM" AS "MutatieDatum",
"LPLA_1"."MUTATIE_TIJD" AS "MutatieTijd"
FROM "KRD"."RDC_MUTATIES" "LPLA_1") "LPA_L1")
WHERE ROWNUM <= 1
As you can see, the SELECT statement that has the MIN selects the field "LPA_L1"."MUTATIE_DATUM". But, because this field is aliased in the subquery (AS "MutatieDatum"), the outer query cannot find the field.
Is there something I'm missing here?
Thank you.
Diederik
Selfservicing Oracle 10g Microsoft driver
Runtime version 2.6.0.0
Runtime Build 08122008