Symfony2 Doctrine CAST AS DECIMAL(Symfony2 Doctrine CAST AS DECIMAL)
问题描述
我在 Symfony2 中使用 Sonata Admin Bundle 并有一个自定义过滤器.在数据库中,列是浮动的(无法更改).如果你输入 1333.33 将没有结果.
I use Sonata Admin Bundle in Symfony2 and have a custom filter. In database, column is float (cannot change it). If you type 1333.33 there will be no result.
一种解决方案是使用 CAST:
One solution is to use CAST:
CAST( o.price AS DECIMAL) = CAST( 399.99 AS DECIMAL)
查询在 SQL 中运行良好,但 Doctrine 抛出错误.所以我的问题是如何在 Doctrine 或其他可靠的解决方案中使用 CAST?
Query is working just fine in SQL but Doctrine throws an error. So my question is how can use CAST in Doctrine or another reliable solution?
推荐答案
Doctrine 在其 DQL 中没有提供 CAST
构造(参见 这个列表).
Doctrine does not provide a CAST
construct in its DQL (see this list).
但对于您的特殊情况,比较乘以 100 的值应该足够了:
But for your special case, it should be enough to compare the values multiplyed by 100:
o.price * 100 = 399.99 * 100
这篇关于Symfony2 Doctrine CAST AS DECIMAL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Symfony2 Doctrine CAST AS DECIMAL
基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01