I'm using EF6 code first approach to create database. When i add migration and update database it always create Non-cluster Index for every foreign key in the table by default.
My Question: Is there any global setting for EF6 to not create Non-Cluster indexon foreign key ?
I have search and found the following solutions
Solution 1: Remove index line from migration before updating database
Solution 1 not suits me because i have a lot of tables and my db is already created. Manually remove index creation line takes much much time.
Moreover i'm also using fluent api is there any option related to this issue ?
