Is there a way to get EF CTP5 to create an index when it creates a schema?
|
|
You can take advantage of the new CTP5’s ExecuteSqlCommand method on Database class which allows raw SQL commands to be executed against the database. The best place to invoke SqlCommand method for this purpose is inside a Seed method that has been overridden in a custom Initializer class. For example:
|
|||||||||||||||||||
|
|
As some mentioned in the comments to Mortezas answer there is a CreateIndex/DropIndex method if you use migrations. But if you are in "debug"/development mode and is changing the schema all the time and are recreating the database every time you can use the example mentioned in Morteza answer. To make it a little easier, I have written a very simple extension method to make it strongly typed, as inspiration that I want to share with anyone who reads this question and maybe would like this approach aswell. Just change it to fit your needs and way of naming indexes.
.
|
|||
|
|
|
This feature should be available in the near-future via data annotations and the Fluent API. Microsoft have added it into their public backlog: http://entityframework.codeplex.com/workitem/list/basic?keywords=DevDiv [Id=87553] Until then, you'll need to use a seed method on a custom Initializer class to execute the SQL to create the unique index, and if you're using code-first migrations, create a new migration for adding the unique index, and use the |
|||
|
|
|
Check my answer here Entity Framework Code First Fluent Api: Adding Indexes to columns this allows you to define multi column indexes by using attributes on properties. |
|||||
|