-1

我有 2 个具有 1-1 关系的模型。

public class CustomerModel
{
    public int Id { get; set; }
    public string Name { get; set; }
    public AddressModel Address { get; set; }
}

public class AddressModel
{
    public int Id { get; set; }
    public string Street { get; set; }
}

现在我需要一个可以将 Address 模型与客户链接的视图,因此,在 customerModel 的创建中,它也带来了地址创建和链接,就像在帖子中地址将在客户字段中一样。

4

1 回答 1

0
@model Mvc.Models.CustomerModel


@Html.EditorForModel(Model)
@Html.EditorFor(x => x.Address)

如果你像这样创建你的视图,那么你将能够发回一个采取 a 的动作结果,CustomerModel并且绑定应该正常工作

您可能希望对自定义注释等做更多的事情,因为我怀疑您是否希望用户能够编辑地址 ID,但这应该为您指明正确的方向

于 2013-06-25T14:00:21.860 回答