Page 1 of 1

Database First - Proper Case capitalization of Classes and Methods

Posted: Fri 23 Jun 2017 07:38
by jagmagh
I am using Entity Developer in Database First approach to generate my entity classes from an existing Oracle database.

Being a legacy database, we do not have control to change / edit the current schema which is in UPPERCASE being the oracle default.

I tried using "FirstLetterCapital" but because the database schema is ALL CAPITAL, that has no effect on the naming and the Class / Properties are still in CAPITAL after using that option.

I would like my Entity Classes / Properties generated by Entity Developer to however be in ProperCase i.e. COMPANY should become Company or USERPROFILE should become UserProfile.

Is it possible to do this using Entity Developer?

Re: Database First - Proper Case capitalization of Classes and Methods

Posted: Fri 23 Jun 2017 16:04
by Pinturiccio
Use Capitalized instead of FirstLetterUppercase. Is this what you want?

Re: Database First - Proper Case capitalization of Classes and Methods

Posted: Mon 03 Jul 2017 09:41
by jagmagh
@Pinturiccio - yes that was exactly what i wanted. I just didnt realise it till i tried it out after reading your comment. Thanks a lot.