gpt4 book ai didi

c# - 如果我的导航属性是单个项目,我如何在 linq 语句中使用 Expression>?

转载 作者:行者123 更新时间:2023-11-30 18:45:58 26 4
gpt4 key购买 nike

我有一个表达式,可以将数据库对象从另一个系统映射到我可以在任何系统中使用的标准对象。

例如:

private static Expression<Func<excessive_location, MyLocation>> LocationMap =
l => new MyLocation()
{
Id = l.unique_id,
Code = l.location_code,
Active = l.active

...Other properties
}

在以下情况下,这完全符合我的预期

public IEnumerable<MyLocation> GetActiveLocations()
{
return otherSystem.location_table
.Select(LocationMap)
.Where(l => l.Active == true)
.ToList();
}

但我似乎无法想出一种方法让它作为另一个表达式的一部分工作

private static Expression<Func<excessive_user, User>> UserMap =
e => new User()
{
Id = e.unique_id,
FirstName = e.fname,
LastName = e.lname,
Location = e.excessive_location
.Select(LocationMap) // will not work since
// e.excessive_location is not a collection
};

我知道我可以将它编译成一个函数,但它必须为成千上万的每个用户执行。使这项工作正常进行的正确方法是什么?

最佳答案

为了实现目标,您需要一些表达式助手。

首先让我向您展示结果代码:

private static Expression<Func<excessive_location, MyLocation>> LocationMap =
l => new MyLocation()
{
Id = l.unique_id,
Code = l.location_code,
Active = l.active
};

private static Expression<Func<excessive_user, User>> UserMap =
Utils.Expr((excessive_user u) => new User
{
Id = u.unique_id,
FirstName = u.fname,
LastName = u.lname
})
.BindMemberInit(u => u.Location,
Utils.Expr((excessive_user u) => u.excessive_location).Bind(LocationMap));

现在是 helper 。

第一个叫做 Expr 是一个简单的方法,允许您定义没有局部变量的表达式。

第二个称为Bind 允许您将表达式绑定(bind)到另一个表达式访问器。

所以有

(excessive_user u) => u.excessive_location

(excessive_location l) => new MyLocation { Id = l.unique_id, .... }

你可以做

(excessive_user u) => new MyLocation { Id = u.excessive_location.inique_id, ...}

第三个称为 BindMemberInit 允许您将新成员初始化添加到现有的 new { ... } 表达式。

最后一个名为 ReplaceParameter 的方法允许您用另一个表达式替换表达式参数。

完整代码如下:

public static class Utils
{
public static Expression<Func<T, TResult>> Expr<T, TResult>(Expression<Func<T, TResult>> e) { return e; }

public static Expression<Func<TOuter, TResult>> Bind<TOuter, TInner, TResult>(this Expression<Func<TOuter, TInner>> source, Expression<Func<TInner, TResult>> resultSelector)
{
var body = resultSelector.Body.ReplaceParameter(resultSelector.Parameters[0], source.Body);
return Expression.Lambda<Func<TOuter, TResult>>(body, source.Parameters);
}

public static Expression<Func<TSource, TTarget>> BindMemberInit<TSource, TTarget, TMember, TValue>(this Expression<Func<TSource, TTarget>> expression, Expression<Func<TTarget, TMember>> member, Expression<Func<TSource, TValue>> value)
{
var binding = Expression.Bind(
((MemberExpression)member.Body).Member,
value.Body.ReplaceParameter(value.Parameters[0], expression.Parameters[0]));
var body = (MemberInitExpression)expression.Body;
return expression.Update(body.Update(body.NewExpression, body.Bindings.Concat(new[] { binding })), expression.Parameters);
}

static Expression ReplaceParameter(this Expression expression, ParameterExpression source, Expression target)
{
return new ParameterReplacer { Source = source, Target = target }.Visit(expression);
}

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

关于c# - 如果我的导航属性是单个项目,我如何在 linq 语句中使用 Expression<Func<T>>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35925547/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com