-
Notifications
You must be signed in to change notification settings - Fork 57
EfSchemaCompare limitations
Jon P Smith edited this page Apr 22, 2019
·
6 revisions
There are a few limitations on what the EfSchemaCompare feature can check.
- Because I use EF Core's scaffolder I cannot check if an index is applied to a foreign key (the scaffolder assumes EF Core will do that by default). EF Core adds indexes to foreign keys.
- I have not included code to find/check alternate keys. I have added an issue (#1) to track this.
- I have not included code to find/check sequences.
I cannot (currently) check DbQuery types. I output one warning with all the DbQuery types in so that you know that haven't been checked. You need to ignoreTheseErrors to ignore the error.
- Testing against a PostgreSQL db
- Changes in EfCore.TestSupport 5
- Testing with production data
- Using an in-memory database (old)