Canonical Functions - EntityFunctions.TruncateTime
Posted: Fri 26 Nov 2010 15:24
I'm trying to execute a query that uses a canonincal function EntityFunctions.TruncateTime and I'm getting an error ORA-00904.
Here is the Linq:
I'm using version: 5.70.190.
What is worng? Canonical functions are not supported?
Best Regards,
Henrique
Here is the Linq:
Code: Select all
var logoffs = from off in ctxSiebel.DbaAuditTrails
where off.Timestamp >= semana.DtInicioSemana
&& EntityFunctions.TruncateTime(off.Timestamp) = :p__linq__0) AND ((TruncateTime("Extent1".TIMESTAMP)) <= :p__linq__1)
GROUP BY "Extent1".TIMESTAMP
) "GroupBy1"
What is worng? Canonical functions are not supported?
Best Regards,
Henrique