You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this example, ProductObject might be null where Product is not. The behavior seems inconsistent, but even if ProductObject is not null, its children doesn't get populated correctly (ProductPricings)
The text was updated successfully, but these errors were encountered:
Ex:
-- Auto-generated interface
` public partial interface IProductSelection : IGlassBase
{
-- Manually generated interface
public partial interface IProductSelection { [SitecoreField(IProductSelectionConstants.ProductFieldName)] IProduct ProductObject { get; } }
-- Manually generated interface for IProduct
public partial interface IProduct : IProductTitle { [SitecoreChildren(InferType = true)] IEnumerable<IProductPricing> ProductPricings { get; set; } }
In this example, ProductObject might be null where Product is not. The behavior seems inconsistent, but even if ProductObject is not null, its children doesn't get populated correctly (ProductPricings)
The text was updated successfully, but these errors were encountered: