具有自定义格式的 C# 通用 DateTime.ToString()

C# Generic DateTime.ToString() with custom format

使用时:

DateTime.ToString().Contains("2016")

Entity Framework 产生:

CAST(DateValue AS nvarchar(max)) LIKE '%2016%'

这使用默认的日期格式"mon dd yyyy hh:miAM (or PM)"

我想要用户 "yyyy-mm-dd hh:mi:ss (24h)" 可以通过以下方式获得:

CONVERT(VARCHAR(max), DateValue, 20) LIKE '%2016%'

我需要帮助将此格式实现为现有的通用方法。

static Expression<Func<T, TResult>> Expr<T, TResult>(Expression<Func<T, TResult>> source) { return source; }
static MethodInfo GetMethod(this LambdaExpression source) { return ((MethodCallExpression)source.Body).Method; }
static readonly MethodInfo Object_ToString = Expr((object x) => x.ToString()).GetMethod();
static readonly MethodInfo String_Contains = Expr((string x) => x.Contains("y")).GetMethod();

public static IQueryable<T> Filter<T>(this IQueryable<T> query, List<SearchFilterDto> filters)
 where T : BaseEntity
{
    if (filters != null && filters.Count > 0 && !filters.Any(f => string.IsNullOrEmpty(f.Filter)))
    {
        var item = Expression.Parameter(query.ElementType, "item");
        var body = filters.Select(f =>
        {
            var value = f.Column.Split('.').Aggregate((Expression)item, Expression.PropertyOrField);
            if (value.Type != typeof(string))
            {
                value = Expression.Call(value, Object_ToString);
            }

            return (Expression)Expression.Call(value, String_Contains, Expression.Constant(f.Filter));
        })
        .Where(r => r != null)
        .Aggregate(Expression.AndAlso);

        var predicate = Expression.Lambda(body, item);
        MethodInfo whereCall = (typeof(Queryable).GetMethods().First(mi => mi.Name == "Where" && mi.GetParameters().Length == 2).MakeGenericMethod(query.ElementType));
        MethodCallExpression call = Expression.Call(whereCall, new Expression[] { query.Expression, predicate });
        query = query.Provider.CreateQuery<T>(call);
    }
    return query;
}

请注意,这只是一个例子 - 它不会总是“2016”,也不总是一年。用户可以键入时间或“01”以调用该月第一天、一月或 2001 年的所有记录。这是一个非常灵活的过滤器。

我也明白很多人不会喜欢这种情况,但我真的在这里寻找解决方案而不是被告知"don't do this"

该解决方案还需要满足 LINQ to Entities 的要求,所以我不能简单地使用 .ToString("MMM d yyyy H:mm tt"),因为这将导致:

"LINQ to Entities does not recognize the method 'System.String ToString(System.String)' method, and this method cannot be translated into a store expression."

该代码适用于默认日期格式。我的问题的原因是通过在 Entity Framework.

中操作查询来更改 SQL 级别的日期格式

如果您要确定日期是否在输入值的年份内,为什么不呢:

DateTime.Year == 2016 //or your variable

不过,也许您需要的比我看到的更多。

我发现产生所需结果的唯一方法是使用这样的表达式手动构建它

Expression<Func<DateTime, string>> Date_ToString = date =>
    DbFunctions.Right("000" + date.Year.ToString(), 4) + "-" +
    DbFunctions.Right("0" + date.Month.ToString(), 2) + "-" +
    DbFunctions.Right("0" + date.Day.ToString(), 2) + " " +
    DbFunctions.Right("0" + date.Hour.ToString(), 2) + ":" +
    DbFunctions.Right("0" + date.Minute.ToString(), 2) + ":" +
    DbFunctions.Right("0" + date.Second.ToString(), 2);

丑陋,我知道。坦率地说,您不希望看到从上面的表达式生成 SQL 的 EF - 与所需的 CONVERT(...) 相比是一个巨大的怪物。但至少它有效。

这是代码。可以使用 System.Linq.Expressions 构建上述表达式,但我太懒了,因此使用了一个简单的参数替换器。

修改部分:

if (value.Type != typeof(string))
{
    if (value.Type == typeof(DateTime))
        value = value.ToDateString();
    else if (value.Type == typeof(DateTime?))
        value = Expression.Condition(
            Expression.NotEqual(value, Expression.Constant(null, typeof(DateTime?))),
            Expression.Property(value, "Value").ToDateString(),
            Expression.Constant(""));
    else
        value = Expression.Call(value, Object_ToString);
}

和使用的助手:

static readonly Expression<Func<DateTime, string>> Date_ToString = date =>
    DbFunctions.Right("000" + date.Year.ToString(), 4) + "-" +
    DbFunctions.Right("0" + date.Month.ToString(), 2) + "-" +
    DbFunctions.Right("0" + date.Day.ToString(), 2) + " " +
    DbFunctions.Right("0" + date.Hour.ToString(), 2) + ":" +
    DbFunctions.Right("0" + date.Minute.ToString(), 2) + ":" +
    DbFunctions.Right("0" + date.Second.ToString(), 2);

static Expression ToDateString(this Expression source)
{
    return Date_ToString.ReplaceParameter(source);
}

static Expression ReplaceParameter(this LambdaExpression expression, Expression target)
{
    return new ParameterReplacer { Source = expression.Parameters[0], Target = target }.Visit(expression.Body);
}

class ParameterReplacer : ExpressionVisitor
{
    public ParameterExpression Source;
    public Expression Target;
    protected override Expression VisitParameter(ParameterExpression node)
    {
        return node == Source ? Target : base.VisitParameter(node);
    }
}