-
Notifications
You must be signed in to change notification settings - Fork 224
Upgrading version
Simon Hughes edited this page Mar 20, 2026
·
3 revisions
-
Update the Visual Studio extension (via Extensions → Manage Extensions → Updates).
-
Delete the old
EF.Reverse.POCO.v3.ttincludefile from your project. -
Re-add the generator into the same folder:
- Right-click project → Add New Item
- Search for "reverse poco"
- Use a temporary name (e.g.,
temp.tt)
-
Copy your settings from your existing
Database.ttintotemp.tt(or compare the two files). -
Delete
temp.tt. -
Save your
Database.ttto trigger regeneration.
- The
EF.Reverse.POCO.v3.ttincludefile is the compiled generator. It must be replaced when upgrading — it contains the templates and generation logic. - Your
Database.tt(settings file) is preserved across upgrades. However, new settings may be available in a new version; check Settings Reference for new options. - If you have customized
EF.Reverse.POCO.v3.ttincludedirectly, those changes will be lost. Use Custom file-based templates to persist customizations across upgrades.
See Upgrading from v2 to v3 for specific migration instructions.