Generating POCO from db works like a charm, however what if further tables / columns are added into DB.
How to perform incremental updates of POCO in case of EF DB first?
Here are two alternatives I could think of:
- Or shall we fall back to code-first style from there onwards?
- or just keep adding incremental columns / tables manually into respectively into POCO?