Hello,
I am using Oracle.EntityFrameworkCore version 2.19.30 with .net Core 2.2 and OracleSQLcompatibility set to 11.
I added a column of type Guid in C# and the script generated was:
ALTER TABLE "CUSTOMER" ADD "FILE_ID" RAW(16) DEFAULT ''00000000000000000000000000000000'' NOT NULL
When I execute this command manually, i have an Oracle Error: ORA-01735: invalid ALTER TABLE option.
I need to remove the double quote as follow to make it work:
ALTER TABLE "DESTINATAIRE" ADD "FILE_ID" RAW(16) DEFAULT '00000000000000000000000000000000' NOT NULL
Could you please fix this issue in your next version ?
Thanks and regards,
Thomas