如何使用 Fluent NHibernate 将数据库字段中的空格值转换为 .NET 中的 null?
我正在使用一个遗留数据库,它将“空白”值存储为单个空格。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您应该使用
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.