@model Customer
@Html.Partial("_UserProfile", (UserProfile)Model.UserProfile)
当我运行此代码时,我收到此错误:
The model item passed into the dictionary is of type 'Customer', but this dictionary requires a model item of type 'UserProfile'.
部分视图 _UserProfile 是强类型的。
我希望能够编辑这些字段。有什么建议么?