views:

27

answers:

1

I would like to know, in a database first approach, if it is possible to automatically strip prefixes from table names.

For example table name is:

Core_Customers

I would like that to be just Customers.

Or is this only possible by editing all the class names in the edmx model?

A: 

I think the designer is generated every time you generate your model so even if you change it in it might not be permanent.It's probably only possible by editing all the class names in the edmx model. Here is similar post though!

Misnomer