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而且不会报错了。
时间: 2024-10-10 16:04:41