0

我有要求,其中我必须使用条件投影查询分别计算现金和信用卡的总数。我下面的代码不起作用,它给了我数据类型不匹配错误。它说真条件返回十进制,假返回货币。我不确定它为什么会这样,因为 0.0M 确实代表十进制。有人可以帮我查询吗?

RefundTemplate.Criteria.SetProjection(
                        Projections.ProjectionList()

                        .Add(Projections.Sum(Projections.Conditional
                            (Restrictions.Eq("PaymentType", "CK"),
                                  Projections.Property("Gross"), Projections.Constant(0.0M))), "CashRefund")
                        .Add(Projections.Sum(Projections.Conditional
                            (Restrictions.Eq("PaymentType", "CC"),
                                  Projections.Property("Gross"), Projections.Constant(0.0M))), "CreditRefund"));
4

1 回答 1

3

您可以明确指定要使用的类型。例如:

Projections.Constant(0.0M, NHibernateUtil.Decimal)

NHibernateUtil在此处查看该类的文档:http: //elliottjorgensen.com/nhibernate-api-ref/NHibernate/NHibernateUtil.html

于 2012-07-02T06:59:45.260 回答