I have "table or view does not exist" exception when I send my sql request. How can I remove " "dbo". " from my sql request to make it work?
Exception :
ORA-00942: table or view does not exist
SQL:
SELECT
CAST( "Extent1"."COM_CHRONO" AS number(10,0)) AS "C1",
"Extent1"."SER_CODE" AS "SER_CODE",
"Extent1"."REP_NOM" AS "REP_NOM",
"Extent1"."COM_COMMENTAIRE" AS "COM_COMMENTAIRE",
FROM "dbo"."COMMANDE" "Extent1"
linq:
var sel = from c in ctx.Orders
select c;
COMMANDE
table is created, if its in current schema, useCOMMANDE
directly, if it is in some other schema, useschema.table_name
to access, but make sure that the current schema has appropriate grants on that table. – San