Code first migrations fail to create multi column indexes#46
Closed
cakkermans wants to merge 1 commit intonpgsql:devfrom
Vereyon:dev
Closed
Code first migrations fail to create multi column indexes#46cakkermans wants to merge 1 commit intonpgsql:devfrom Vereyon:dev
cakkermans wants to merge 1 commit intonpgsql:devfrom
Vereyon:dev
Conversation
… on multi column indexes.
This was referenced Sep 14, 2016
|
`[Index("PostDate_Unique_Idx", 1, IsUnique = true)] public virtual Post Post { get; set; }` Is this correct that you are adding indexes to navigation property? As far as I know annotations on navigation properties do not work. |
Contributor
|
@cakkermans @Iamcerba I have checked this. This is not a bug of EntityFramework6.Npgsql... This is a limitation/bug of Entity Framework 6. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
According to MSDN it is possible to specify multi column (unique) indexes using attributes. Hence I would expect them to be created accordingly during a migration. Unfortunately only the first column is added :/
https://msdn.microsoft.com/en-us/data/jj591583.aspx#IndexMulti
I checked the Migration SQL generator and it looks fine. For some reason it seems like the entity framework is not passing on the complete set of columns.
Am I missing something?
This pull request expands on the migration unit tests to demonstrate the problem.