如何使用 FluentNhibernate 和 SQLite 映射布尔值
我知道我需要将 SQLite 中的布尔值保存为整数,我猜 True/False 保存为 1/0。但这是如何在映射文件中完成的呢?
我需要编写一些自定义映射约定类吗?我以前从未这样做过,所以如果有人能提供一个例子将会非常有帮助。
I understand I need to save boolean in SQLite as Integer, True/False as 1/0 I guess. But how is this done in the mapping file?
Do I need to write some custom mapping convention class? I've never done this before, so would be very helpful if someone could offer an example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像映射任何其他属性一样映射它。转换发生在幕后。因此,如果您的实体具有类似
此属性的地图文件之类的内容,则将具有如下所示的条目
You can map it like a any other property. Conversion happens under the covers. So if your entity has something like
the Map file for this property would have an entry like so