Does anyone know how to change the mapped db table for an entity in EF4 (entity framework 4)?
Later edit: I think i\'ve found the place where the table names are def
If you just need to change the name of the table you can:
Table="MyTableName"
Here is a complete CSDL, SSDL, MSL specification.
Hope that helps.