在 nhibernate 中将 int 列映射到 bool 属性时出现问题

发布于 2024-11-28 17:22:08 字数 408 浏览 1 评论 0原文

我有一个 int 列映射为域对象中的布尔类型。一切看起来都很好,直到今天我们注意到,当对 bool 属性执行 QueryOver 时,实际生成的 SQL 并不符合 SqlServer 的喜好。

queryOver 如下所示:

.Where(Restrictions.On<OrderLine>(ol => _orderLineAlias.Approved).IsLike(true));

其 SQL 是,

select * from Orderline where Approved like 'true'

希望您能在这里看到问题,因为列的数据类型是 int,这不会返回任何内容。更改数据库数据类型或实体类的数据类型不是一个选项。

I've got a int column mapped as Boolean type in domain objects. Everything was looking good until today where we noticed when doing a QueryOver on the bool property the actual SQL generated is not to the liking of SqlServer.

The queryOver looks like below:

.Where(Restrictions.On<OrderLine>(ol => _orderLineAlias.Approved).IsLike(true));

And the SQL for that is,

select * from Orderline where Approved like 'true'

Hope you can see the problem here, as the column's data type is int, this wont return me anything. Changing the DB data type or that of the Entity class is not an option.

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

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

发布评论

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

评论(2

半透明的墙 2024-12-05 17:22:09

您是否在配置文件中尝试过以下行?

<property name="hibernate.query.substitutions">true 1, false 0</property> 

有关此主题的 NH 文档链接

Did you try something on the lines of the following in the configuration file?

<property name="hibernate.query.substitutions">true 1, false 0</property> 

Link to NH documentation on this topic

倦话 2024-12-05 17:22:08

你尝试过吗:

    QueryOver<OrderLine>().Where(x => x.Approved == true)

Have you tried:

    QueryOver<OrderLine>().Where(x => x.Approved == true)

?

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