我第一次使用Glass Mapper进入Sitecore 8.1项目。我正在尝试使用Glass进行搜索功能。我已经检查了Glass(http://glass.lu/Mapper/Sc/Tutorials/Tutorial25)的教程但是会抛出错误(" var attributes = new SitecoreAttributeConfigurationLoader(" glass.sitecore7");")。
任何人都有使用Sitecore 8.1的示例。
由于
答案 0 :(得分:0)
搜索示例设置为使用fluent configuration,示例在应用程序启动时也尝试pre-load all the models。
示例中的以下几行:
var attributes = new SitecoreAttributeConfigurationLoader("glass.sitecore7");
...
return new IConfigurationLoader[]{attributes, loader};
您看到的错误是因为您尚未将示例更新到您的特定项目。
您需要更新库的名称以匹配包含类的项目,例如
var attributes = new SitecoreAttributeConfigurationLoader("MyProject.Models");