As we conclude, here is a list of questions for you to test your knowledge regarding this chapter's material. You will find the answers in the Assessments section of the Appendix:
- True or false: When working with Entity Framework, schema management is built in using migrations-based support.
- True or false: When working with a migrations-based approach for schema management, you do not need extra tracking tables in your database schema.
- True or false: When working with an end state-based approach for schema management, you do not need extra tracking tables in your database schema.
- What are the benefits of a full side-by-side approach to database schema changes? (Choose multiple answers):
- The risks are reduced to almost zero.
- You can measure the actual performance impact of changes in a production-like environment.
- Side-by-side migrations reduce cycle time.
- True...