выражение linq для ExecuteUpdateAsync

Я с большим энтузиазмом обнаружил ExecuteDeleteAsync и ExecuteUpdateAsync в EF Core 7. Они помогают сделать мой код намного проще и быстрее. Нет необходимости использовать самодельные процедуры для пакетного удаления или обновления 1-2 полей. В любом случае у меня бывают ситуации, когда во время выполнения нужно выбирать точную таблицу и поле базы данных для обновления.

Я могу использовать таблицу базы данных:

      public static IQueryable<object> Set(this DbContext context, Type entity) =>
        context.ClrQuery(context.ClrType(entity));

У меня есть способ сделать выражение для фильтрации строк:

      public static IQueryable Where(this IQueryable source, string equalProperty, object value, [NotNull] Type EntityType)
{
    PropertyInfo? property = EntityType.GetProperty(equalProperty);
    if (property == null)
        throw new NotImplementedException($"Type {EntityType.Name} does not contain property {equalProperty}");

    ParameterExpression parameter = Expression.Parameter(EntityType, "r");
    MemberExpression member = Expression.MakeMemberAccess(parameter, property);
    LambdaExpression whereExpression = Expression.Lambda(Expression.Equal(member, Expression.Constant(value, property.PropertyType)), parameter);
    MethodCallExpression resultExpression = WhereCall(source, whereExpression);
    return source.Provider.CreateQuery(resultExpression);
}

Итак, я могу найти строки для обновления, используя

      IQueryable Source = db.Set(EntityType).Where(FieldName, FieldValue, EntityType);
            

Я должен сделать выражение для обновленияIQueryable ExecuteUpdateQuery = Source.ExecuteUpdateAsync(EntityType, FieldName, FieldValue);

Как получить доступ к выражению для SetProperty?

1 ответ

Попробуйте следующие расширения. Я также исправил подпись метода:

      var affected = anyQuery.ExecuteUpdate(FieldName, FieldValue);

var affected = await anyQuery.ExecuteUpdateAsync(FieldName, FieldValue, cancellationToken);

И реализация:

      public static class DynamicRelationalExtensions
{
    static MethodInfo UpdateMethodInfo =
        typeof(RelationalQueryableExtensions).GetMethod(nameof(RelationalQueryableExtensions.ExecuteUpdate));

    static MethodInfo UpdateAsyncMethodInfo =
        typeof(RelationalQueryableExtensions).GetMethod(nameof(RelationalQueryableExtensions.ExecuteUpdateAsync));

    public static int ExecuteUpdate(this IQueryable query, string fieldName, object? fieldValue)
    {
        var updateBody = BuildUpdateBody(query.ElementType, fieldName, fieldValue);

        return (int)UpdateMethodInfo.MakeGenericMethod(query.ElementType).Invoke(null, new object?[] { query, updateBody });
    }

    public static Task<int> ExecuteUpdateAsync(this IQueryable query, string fieldName, object? fieldValue, CancellationToken cancellationToken = default)
    {
        var updateBody = BuildUpdateBody(query.ElementType, fieldName, fieldValue);

        return (Task<int>)UpdateAsyncMethodInfo.MakeGenericMethod(query.ElementType).Invoke(null, new object?[] { query, updateBody, cancellationToken })!;
    }

    static LambdaExpression BuildUpdateBody(Type entityType, string fieldName, object? fieldValue)
    {
        var setParam = Expression.Parameter(typeof(SetPropertyCalls<>).MakeGenericType(entityType), "s");
        var objParam = Expression.Parameter(entityType, "e");

        var propExpression = Expression.PropertyOrField(objParam, fieldName);
        var valueExpression = ValueForType(propExpression.Type, fieldValue);

        // s.SetProperty(e => e.SomeField, value)
        var setBody = Expression.Call(setParam, nameof(SetPropertyCalls<object>.SetProperty),
            new[] { propExpression.Type }, Expression.Lambda(propExpression, objParam), valueExpression);

        // s => s.SetProperty(e => e.SomeField, value)
        var updateBody = Expression.Lambda(setBody, setParam);

        return updateBody;
    }

    static Expression ValueForType(Type desiredType, object? value)
    {
        if (value == null)
        {
            return Expression.Default(desiredType);
        }

        if (value.GetType() != desiredType)
        {
            value = Convert.ChangeType(value, desiredType);
        }

        return Expression.Constant(value);
    }
}
Другие вопросы по тегам