我通过Glass.Mapper创建一个Sitecore项目,如下所示:

var homeItem = sitecoreContext.GetHomeItem<HomeItem>();

// Create the car item
ICar car = sitecoreService.Create(homeItem.BooksFolder, new Car { Tires = 4, Seats=4});

除未应用Car模板上的标准值-否则,它们将起作用,或者如果新的Car属性立即将它们覆盖,则它们将起作用。因此,如果Car对象的Color属性值为null,则将此null写入字段,而不是Car模板上标准值中的“绿色”值。

我一直在寻找通过Glass.Mapper做到这一点的明智方法,但是却一无所获。
有没有办法通过Glass.Mapper做到这一点?

最佳答案

有一种方法可以使用看起来像这样的Create方法的覆盖:

T Create<T, TK>(TK parent, string newName, Language language = null, bool updateStatistics = true, bool silent = false) where T : class where TK : class;

因此,您的代码将如下所示:
var homeItem = sitecoreContext.GetHomeItem<HomeItem>();

var carName = "Some New Name";

// Create the car item
// I don't know what the type of BooksFolder is so you would put that in the place of Folder.
ICar car = sitecoreService.Create<Car, Folder>(homeItem.BooksFolder, carName);
car.Tires = 4;
car.Seats = 4;

sitecoreService.Save(car);

我们遇到了同样的问题,这就是我们如何解决的。

关于c# - 如何将标准值应用于使用Glass.Mapper创建的项目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26674102/

10-13 07:56