Is there any way to name my Tables,Columns in the Oracle DB
in lower case letters?
I search a lot and some recommendations say i should use double quotes in the creation like this :
CREATE TABLE "test" (a number);
The problem here is :
It forces me to decorate all my tables with double quotes
through querying !
If i write :
SELECT * FROM test ;
I will get syntax error.
I want to name all my tables , fields as lower case because i will use this in my model through ORM
(Entity Framework) which use (Pluralization and Singularization
) feature , so if i have Table like this :
CITY
according to Oracle convention .
The equivalent will be CITY
entity and the pluralization as navigation property will be CITies
!!