EF Core not including schema when generating DROP INDEX command in migration
I am using Entity Framework Core with Oracle and configuring the default schema in my context using HasDefaultSchema
with the schema PRODUCTMAX
. Index creation works correctly, but when I try to drop an index, the command generated by the migration does not include the schema, resulting in an error.
EFCore not including schema when generating DROP INDEX command in migration
I am using Entity Framework Core with Oracle and configuring the default schema in my context using HasDefaultSchema with the schema “PRODUCTMAX”. Index creation works correctly, but when I try to drop an index, the command generated by the migration does not include the schema, resulting in an error.