I had working code using EF CTP4. Now i updraged tot latest EF version and 5.10.126 of Devart dotConnect for postgreSQL and get some errors.
For a single table query, the following is generated:
Code: Select all
{SELECT
"Extent1"."ID" AS "ID",
"Extent1"."name" AS "name",
"Extent1".code AS code,
"Extent1"."countryID" AS "countryID",
"Extent1"."coordinatenID" AS "coordinatenID",
"Extent1"."creationDate" AS "creationDate",
"Extent1"."creationUserID" AS "creationUserID",
"Extent1"."lastChangedDate" AS "lastChangedDate",
"Extent1"."lastChangedUserID" AS "lastChangedUserID"
FROM dbo.city AS "Extent1"}
column Extent1.ID does not exist"
This is understanable because i get the same when i try to execute this query directly in the database.
For every columns, this part is the problem: ."ID"
So every
Code: Select all
"Extent1"."XY" AS "XY"
Code: Select all
"Extent1".XY AS XY
Can someone take a look at this?
Thanks,
Atam