I have a petapoco class with a name that is equal to the table name.
i want to change the class name without changing the table name on the DB (for upgrade reasons in my application) - how can i do it?
just add the following:
...
[TableName("YourOldName")]
public class YourNewClassName
{
...
}