I've read that Self-Tracking Entities (STE) are now deprecated and Microsoft will not invest in those anymore.
I am currently working on a n-tier application in which client code is making method calls to a WCF Service to fetch Self-Tracking Entities. There is no such thing as a DBContext in my client code : it only deals with the entities themselves.
Since a self-tracking entity has it's change tracker code within itself, the client code can easliy work with them and it's easy to actually push the changes back into the database.
I've tried the EF4 DBContext Generator t4 templates but they generate persistence-ignorant entities, therefore, my client code cannot work with them to track the changes the way it did with STEs.
Is it possible to migrate from such a project to a DBContext based project without having to rewrite a big deal of client code as well as the WCF Service code ?