Add postfix to model name in EF DB FIRST

I am using Entity Framework database first. I would like to add some text to my model class name. for example

Table: Orders => Model: OrderEntity
Table: Products => Model: ProductEntity
Table: Emails => Model: EmailEntity

      

I would like to do this automatically, when I add a new table, the model class name will be postfixed "Entity".

+3


source to share





All Articles