Hi,
If I run this code, I get alot of products:
var products = Product.getAllProductsFromShop("SHOP2");
However, if I run this code, I dont get any groups. But the Group with that ID exists:
var parentGroup = Group.GetGroupsByIDs(new List<string>
{
"SHOP2"
}).Cast<Group>().FirstOrDefault();
if (parentGroup == null)
{
throw new Exception("DynamicWeb does not work as expected.");
}
Thanks,
Martin.