Fluent NHibernate 的密码确认字段

发布于 2024-11-28 18:24:21 字数 237 浏览 2 评论 0原文

我是 NHibernate 的新手,正在尝试构建我的第一个简单网站。我想要一个带有密码和确认密码字段的用户注册屏幕。

我的 User 业务对象中有这些字段,但无法确定要使用哪个映射,以便从 Password 加载 ConfirmPassword 字段> 加载User 时的数据库字段,但在保存对象时被忽略。

这可能吗?

I'm new to NHibernate and am trying to build my first simple website. I want a user registration screen with Password and ConfirmPassword fields.

I have these fields in my User business object, but am having trouble working out which mapping to use so that the ConfirmPassword field is loaded from the Password database field when a User is loaded, but ignored when the object is saved.

Is this possible?

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

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

发布评论

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

评论(1

迟到的我 2024-12-05 18:24:21

我想说这不是最好的方法。而是创建两个类。一种是 User - 来自域的实体,一种是 UserViewModel - 通常是普通的 DTO。保存或检索 User 对象时,将其值映射到 ViewModel。您可以手动执行或使用 AutoMapper 库。所以User只有Password,而ViewModel有这两个属性。

但如果您需要这个或类似的东西,在您的映射中写

mapping.Map(o => o.PasswordConfirm).Formula(" Password ");

这应该可以工作。

I would say its not the best way to go. Rather create two classes. One is User - entity from domain, one is UserViewModel - usually plain DTO. When saving or retrieving User object map its values to ViewModel. You can do in manually or use AutoMapper library. So User has only Password, and ViewModel has both properties.

But if you need this or something similar, in your mapping write

mapping.Map(o => o.PasswordConfirm).Formula(" Password ");

This should work.

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