在 nhibernate 中将 int 列映射到 bool 属性时出现问题
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否在配置文件中尝试过以下行?
有关此主题的 NH 文档链接
Did you try something on the lines of the following in the configuration file?
Link to NH documentation on this topic
你尝试过吗:
?
Have you tried:
?