We have recently successfully migrated our application to Commerce 14. I am not sure if issue is because of migration. I am trying to add a new Property to Product but it is not reflecting on Commerce Catalog UI for product. Below is the class GenericProduct/BaseProduct where I am trying to add new property
GenericProduct inheriting BaseProduct
BaseProduct Inheriting ProductContent
New Property:
[Searchable] [CultureSpecific] [Tokenize] [IncludeInDefaultSearch] [BackingType(typeof(PropertyString))] [Display(Name = "Style Group", Order = 25)] public virtual string StyleGroupName { get; set; }
Seems like new property is getting created in db as I tried to change backingtype and i got some error. As I am pretty new to Commerce I thought creating new property is same as we create in CMS. I guess db and UI is not getting sync. Do we need to add any setting or code for any synchronization in Commerce?
We have recently successfully migrated our application to Commerce 14. I am not sure if issue is because of migration. I am trying to add a new Property to Product but it is not reflecting on Commerce Catalog UI for product. Below is the class GenericProduct/BaseProduct where I am trying to add new property
GenericProduct inheriting BaseProduct
BaseProduct Inheriting ProductContent
New Property:
[Searchable]
[CultureSpecific]
[Tokenize]
[IncludeInDefaultSearch]
[BackingType(typeof(PropertyString))]
[Display(Name = "Style Group", Order = 25)]
public virtual string StyleGroupName { get; set; }
Seems like new property is getting created in db as I tried to change backingtype and i got some error. As I am pretty new to Commerce I thought creating new property is same as we create in CMS. I guess db and UI is not getting sync. Do we need to add any setting or code for any synchronization in Commerce?