2

我对 MVC 很陌生。我正在使用 aninterface作为我的模型的属性。

我注意到我Data Annotation Attributes的被忽视了。我在提交表单时也遇到了错误:

无法创建接口的实例。

我很快发现我将不得不使用自定义ModelBinder

我很难弄清楚在CreateModel方法中需要做什么ModelBinder

我有以下内容RegistrationModel

public class RegistrationModel
{
    #region Properties (8) 

    public string Email { get; set; }

    public string FirstName { get; set; }

    public Gender Gender { get; set; }

    public string LastName { get; set; }

    public string Password { get; set; }

    public string PasswordConfirmation { get; set; }

    public IPlace Place { get; set; }

    public string Username { get; set; }

    #endregion Properties 
}

这是IPlace接口和实现:

public interface IPlace
{
    #region Data Members (7) 

    string City { get; set; }

    string Country { get; set; }

    string ExternalId { get; set; }

    Guid Id { get; set; }

    string Name { get; set; }

    string Neighborhood { get; set; }

    string State { get; set; }

    #endregion Data Members 
}

public class Place : IPlace
{
    #region Implementation of IPlace

    public Guid Id { get; set; }

    [StringLength(100, ErrorMessage = "City is too long.")]
    public string City { get; set; }

    [StringLength(100, ErrorMessage = "Country is too long.")]
    public string Country { get; set; }

    [StringLength(255, ErrorMessage = "External ID is too long.")]
    public string ExternalId { get; set; }

    [Required(ErrorMessage = "A name is required.")]
    [StringLength(450, ErrorMessage = "Name is too long.")]
    [DisplayName("Location")]
    public string Name { get; set; }

    [StringLength(100, ErrorMessage = "Neighborhood is too long.")]
    public string Neighborhood { get; set; }

    [StringLength(100, ErrorMessage = "State is too long.")]
    public string State { get; set; }

    #endregion
}
4

1 回答 1

2

您应该尽量避免在视图模型中使用接口和抽象类型。因此,在您的情况下,如果采用此视图模型的控制器操作永远不能具有IPlace比的任何其他实现Place,则只能替换接口。

如果出于某种原因需要它,正如您已经发现的那样,您将必须编写一个自定义模型绑定器,在其中指定要创建的实现。这是一个例子

于 2012-04-05T06:13:36.127 回答