gpt4 book ai didi

c# - nhibernate fluent bool 到 smallint 映射

转载 作者:行者123 更新时间:2023-11-30 16:33:33 24 4
gpt4 key购买 nike

在我的应用程序中,我有一个名为 DisplayIndi​​cator 的 bool 属性。在数据库 (DB2) 中,它对应于 smallint 类型的 DISPL_IND 列。信件如下:[DisplayINdicator=True, DISPL_IND=1] 和[DisplayINdicator=False, DISPL_IND=0]是否可以使用 nhibernate fluence 将 bool 属性映射到 smallint?

最佳答案

在 Frans 的建议下,我弄明白了。我创建了一个代表 nhibernate 用户类型的类,用于将 bool 类型映射到短类型:

公共(public)类 BooleanAsShortType : IUserType

在映射中,我添加了一个 CustomType 属性,现在它看起来像这样:

Map(x => x.DisplayIndi​​cator, "DSPL_IND").CustomType< BooleanAsShortType >();

关于c# - nhibernate fluent bool 到 smallint 映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3044310/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com