0

我正在使用非商业 V2.6。所以我尝试在管理面板中添加新产品。我输入所有数据,然后单击保存按钮或保存并继续编辑按钮。

我有这样的错误。

    Object reference not set to an instance of an object.

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

    Source Error:



Line 546:                //default product variant
Line 547:                var variant = model.FirstProductVariantModel.ToEntity();             
Line 548:                variant.ProductId = product.Id;
Line 549:                variant.Published = true;
Line 550:                variant.DisplayOrder = 1;

我的代码在下面有错误..

var variant = model.FirstProductVariantModel.ToEntity();             
                variant.ProductId = product.Id;
                variant.Published = true;
                variant.DisplayOrder = 1;
                variant.CreatedOnUtc = DateTime.UtcNow;
                variant.UpdatedOnUtc = DateTime.UtcNow;
                _productService.InsertProductVariant(variant);
                FirstVariant_UpdateLocales(variant, model.FirstProductVariantModel);

我怎么能爱它。。

请帮助...谢谢

4

1 回答 1

1

对于该产品,您必须在默认产品变体信息选项卡 下添加一个产品变体

于 2012-09-14T14:47:58.730 回答