具有从字符串到类型的隐式转换的模型绑定属性

发布于 2024-09-18 15:55:21 字数 564 浏览 4 评论 0原文

我有以下类:

public class PostCode {
    public string Name { get; set; }

    public static implicit operator PostCode(string postCode)
    {
        return new PostCode {Name = postCode};
    }
}

它构成 Address 类的一部分,该类是辅助模板的模型 (EditorTemplates>Address.ascx)。

此帮助器模板使用 <%= Html.EditorFor(model => model.Address)%> 呈现,其中 Address 是另一个对象上的属性。

除了 PostCode 对象之外,在发送到操作方法时,地址中的所有内容都会正确绑定。这似乎是因为它存储为 PostCode 而不是字符串。

我怎样才能强迫模型绑定者尊重这个演员?

I have the following class:

public class PostCode {
    public string Name { get; set; }

    public static implicit operator PostCode(string postCode)
    {
        return new PostCode {Name = postCode};
    }
}

It forms part of an Address class which is the model for a helper template (EditorTemplates>Address.ascx).

This helper template is rendered using <%= Html.EditorFor(model => model.Address)%> where Address is the property on another object.

Everything in the address is correctly bound when posting to the action method apart from the PostCode object. It seems likely that this is due to the fact that it is stored as a PostCode instead of a string.

How can I force the model binder to honour this cast?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

煮茶煮酒煮时光 2024-09-25 15:55:21

我最终使用一个字符串来表示 ViewModel 中的邮政编码,并在映射到我的域实体中进行了转换。

I ended up using a string to represent the postcode in the ViewModel and did the conversion in the mapping to my domain entity.

烟火散人牵绊 2024-09-25 15:55:21

您有邮政编码的编辑器模板吗?
如果没有创建它。

Did you have EditorTemplate for PostCode?
If not create it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文