索引 属性 DDS EPiServer 的最佳方法是什么

What is the best way to index property DDS EPiServer

在映射到 DDS 的现有对象上添加索引的最佳方法是什么?数据库中已经存储了数十万个对象。

是否只需将 [EPiServerDataIndex] 属性添加到我现有的 类,重新编译并重新部署站点就那么简单?

您的选择似乎是:

1) 添加 [EPiServerDataIndex] 属性或...

2) 创建商店时通过商店参数添加索引:

var params = new StoreDefinitionParameters(); storeParams.IndexNames.Add("SomeModelPropertyName"); var store = DynamicDataStore.CreateStore<YourType>("StoreName", params);

更多信息here