码迷,mamicode.com
首页 > 其他好文 > 详细

Entity Framework Code First处理Clustered Index

时间:2015-04-06 20:05:28      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

Clustered Index <=>集群索引:

http://msdn.microsoft.com/en-us/library/ms177443.aspx

由于其特殊性,使得每个table只可以有一个clustered index,如果尝试建立第二个,会报错。

在EntityFramework里,不知道即将到来的7如何处理这个索引,但是到目前为止最新的EF版本,对这个索引的支持不是很好,EF默认的将主键设为clustered index,然后如果你想要设置其他property为clustered index,就报错了。

解决方法是使用Code First Migrations生成数据库的迁移脚步,取消主键的clustered index设置:

.PrimaruKey(t=>t.Id,null,false)//第三个参数设成false即取消主键clustered index.

这样就可以设置其他property为clustered index而且不会报错了。

Entity Framework Code First处理Clustered Index

标签:

原文地址:http://www.cnblogs.com/fred-bao/p/4396419.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!