London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
Found a bug in Mediachase.Commerce 13.28.0
Guid? IOrderGroup.Organization
{
get
{
if (string.IsNullOrEmpty(OwnerOrg))
{
return null;
}
if (Guid.TryParse(OwnerOrg, out var result))
{
return result;
}
return null;
}
set
{
if (value.HasValue)
{
OwnerOrg = value.ToString();
}
OwnerOrg = null;
}
}
The setter is always setting OwnerOrg to null.
Workaround:
Use OwnerOrg field (string) instead.