forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTruncateGenerator.cs
32 lines (29 loc) · 1017 Bytes
/
TruncateGenerator.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Collections.ObjectModel;
using System.Linq.Expressions;
using System.Reflection;
using NHibernate.Hql.Ast;
using NHibernate.Linq.Visitors;
using NHibernate.Util;
namespace NHibernate.Linq.Functions
{
internal class TruncateGenerator : BaseHqlGeneratorForMethod
{
public TruncateGenerator()
{
SupportedMethods = new[]
{
ReflectHelper.FastGetMethod(Math.Truncate, default(decimal)),
ReflectHelper.FastGetMethod(Math.Truncate, default(double)),
ReflectHelper.FastGetMethod(decimal.Truncate, default(decimal)),
#if NETCOREAPP2_0_OR_GREATER || NETSTANDARD2_1_OR_GREATER
ReflectHelper.FastGetMethod(MathF.Truncate, default(float)),
#endif
};
}
public override HqlTreeNode BuildHql(MethodInfo method, Expression expression, ReadOnlyCollection<Expression> arguments, HqlTreeBuilder treeBuilder, IHqlExpressionVisitor visitor)
{
return treeBuilder.MethodCall("truncate", visitor.Visit(arguments[0]).AsExpression(), treeBuilder.Constant(0));
}
}
}