我有一个包含 3 个部分视图的页面。
...
.
.
@Html.Action("one" , "Home")
@Html.Action("two" , "Home")
@Html.Action("three" , "Home")
.
.
.
我在数据库中有 5 个表。其中一些有关系。这些表的某些字段应填写部分 ONE,有些字段应填写部分 2,并且...我将这 5 个表组合在一起。
public class ViewModelX
{
public Nullable<long> id_sport { get; set; }
public Nullable<long> id_city { get; set; }
public Nullable<long> id_spend { get; set; }
public Nullable<long> id_profile { get; set; }
public Nullable<int> cost { get; set; }
public Nullable<long> idFactor { get; set; }
public Nullable<long> Idpage { get; set; }
public string username { get; set; }
public string Namestar { get; set; }
public string Lnamestar { get; set; }
public string Tell { get; set; }
public string cell { get; set; }
public string Address { get; set; }
public string Code { get; set; }
public string username_s { get; set; }
public Nullable<long> id_s { get; set; }
public Nullable<long> id_mark{ get; set; }
}
现在我应该把这个模型传递给每个部分吗?我也应该将它传递给包含这 3 个部分视图的基本页面吗?