I'm trying to scaffold a table, but always get an error.
Scaffold-DbContext "DATA SOURCE=Datasource;PASSWORD=xxxxxx;USER ID=xxxxx" Oracle.EntityFrameworkCore -OutputDir Models -Tables tablea -Force -Context "AppDBContext" -DataAnnotations
For it to work I have to specify the table in UPPERCASE.
Scaffold-DbContext "DATA SOURCE=Datasource;PASSWORD=xxxxxx;USER ID=xxxxx" Oracle.EntityFrameworkCore -OutputDir Models -Tables TABLEA -Force -Context "AppDBContext" -DataAnnotations
My questions is: Is that normal? Does it have to be in uppercase or is it CaseSensitive?