I was considering creating a basic object model in my new C# MVC project by importing all of the database tables using the entity framework. However, our database standards mean that all tables are prefixed with tbl; e.g. the table for client details is called tblClient.

Is there a way to import all of the tables into the C# application while applying a conversion filter to remove that tbl from the front of every object, so that my client object is created with the name Client rather than tblClient?

Thanks...