0

これは私のオブジェクトです

public class ProductContent
    {
        public Product Product { get; set; }
        public Location ProductLocation { get; set; }


    }

Location オブジェクトと密接に結合されたビューがあります。

私は自分のproductcontentビューでProductContentと密接に結合されたビューを持っています

@Html.Partial("../PartialViews/Location", Model.ProductLocation)

というエラーが表示されます

The model item passed into the dictionary is of type 'ProductContent', but this dictionary requires a model item of type 'Location'.

タイプ location の Model.ProductLocation を渡していますが、それでもエラーが発生するのはなぜですか?

MVC3 C# Razor を使用しています

4

1 に答える 1