Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
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.