如何使用 Fluent NHibernate 将数据库字段中的空格值转换为 .NET 中的 null?

发布于 2024-08-26 17:36:32 字数 136 浏览 5 评论 0原文

我正在使用一个遗留数据库,它将“空白”值存储为单个空格。 Fluent NHibernate 有没有办法通过约定或映射覆盖的方式,将这个“空白”值转换为 .NET null? (我知道我需要将空值作为单个空间保存到该数据库中,但我将为此使用保存事件侦听器)。

I am working with a legacy database that stores "blank" values as a single space. Is there a way with Fluent NHibernate, either by way of a convention or mapping override, that I can translate this "blank" value as a .NET null? (I know that I will need to save nulls to this database as a single space still but I will use an save event listener for that).

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

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

发布评论

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

评论(1

廻憶裏菂餘溫 2024-09-02 17:36:32

为此,您应该使用 IUserType 的自定义实现,而不是侦听器。这是 网络上提供的许多示例中的一个示例。 James Gregory 写了一篇关于如何实现 IUserTypes 的好文章使用 Fluent NHibernate 约定。

You should use a custom implementation of IUserType for this, not a listener. Here's one example of many examples available on the web. James Gregory wrote a good article on how to implement IUserTypes using a Fluent NHibernate conventions.

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