Properties
Order and Order Line metadata in Umbraco Commerce.
Setting Properties
// Set a single property
await order.SetPropertyAsync("propertyAlias", "Property Value");
// Set multiple properties at once
await order.SetPropertiesAsync(new Dictionary<string, string>{
{ "propertyAlias1", "Property Value 1" },
{ "propertyAlias2", "Property Value 2" },
{ "propertyAlias3", "Property Value 3" }
})
// Remove a property
await order.RemovePropertyAsync("propertyAlias");
System Properties
Order System Properties
Alias
Description
Order Line System Properties
Alias
Description
Automatic Properties

Product Uniqueness Properties

Order Property Map
Last updated
Was this helpful?