gpt4 book ai didi

属性表达式的 C# 聚合返回 AmbiguousMatchException

转载 作者:行者123 更新时间:2023-11-30 15:53:06 26 4
gpt4 key购买 nike

我有以下(简化的)类(class):

public abstract class BaseSite
{
public int SiteId { get; set; }
public string Name { get; set; }
}

public class OptionalSite : BaseSite
{
public new int? SiteId { get; set; }
}

还有下面的方法:

    public static Expression<Func<T, bool>> PredicateExtension<T>(this IQueryable<T> source, string member, object value, string expression)
{
ParameterExpression item = Expression.Parameter(typeof(T), "item");
Expression memberValue = member.Split('.').Aggregate((Expression)item, Expression.PropertyOrField);
Type memberType = memberValue.Type;
if (value != null && value.GetType() != memberType)
value = Convert.ChangeType(value, memberType);
Expression condition = null;
switch (expression)
{
case "==":
condition = Expression.Equal(memberValue, Expression.Constant(value, memberType));
break;
case "!=":
condition = Expression.NotEqual(memberValue, Expression.Constant(value, memberType));
break;
case "<":
condition = Expression.LessThan(memberValue, Expression.Constant(value, memberType));
break;
case ">":
condition = Expression.GreaterThan(memberValue, Expression.Constant(value, memberType));
break;
case "<=":
condition = Expression.LessThanOrEqual(memberValue, Expression.Constant(value, memberType));
break;
case ">=":
condition = Expression.GreaterThanOrEqual(memberValue, Expression.Constant(value, memberType));
break;
default:
break;
}
if (condition == null)
condition = Expression.Equal(memberValue, Expression.Constant(value, memberType));
var predicate = Expression.Lambda<Func<T, bool>>(condition, item);

return predicate;
}

现在使用以下参数调用方法时:

LinqExtentions.PredicateExtension<OptionalSite>(SiteDbSet, "SiteId", 1, "==");

我有以下问题:在该方法的第二行有一个 Aggregate 调用,但这给了我 AmbiguousMatchException。原因是属性 SiteId 在基类和 OptionalSite 类中都有定义(public new ...) ...

所以这里的问题是:如何使用这种(或另一种)方法获得正确的表达式?我可能需要获得相同的 Expression 结果,但使用不同的方式获取它,以便在基类和实现类中找到属性时,我可以为类上的属性选择实现基类。

编辑:

SiteId 的类型从int 变为int?。实现此基类的其他类需要将其作为必需属性 (EF),但此类需要将其作为可选属性。因此,我不能在我的基类中使用 virtual 关键字。

最佳答案

有关为什么会出现 AmbiguousMatchException 以及如何解决它的信息,您可以查看 this回答。

您将不得不使用更高级的功能:

Expression memberValue = member.Split('.').Aggregate((Expression)item, (expr, name) =>
{
// get all properties with matching name
var properties = expr.Type.GetProperties().Where(p => p.Name == name);
// if only one found, use that, else use the one that is declared in the derived type
var property = properties.Count() == 1 ? properties.First() : properties.Single(p => p.DeclaringType == expr.Type);
// make expression from this PropertyInfo
return Expression.Property(expr, property);
});

请注意,这只是一种基本方法。它不考虑字段(不应该是 EF 的问题)并且可能有多个继承级别,属性在中间的任何位置声明。但你明白了。

关于属性表达式的 C# 聚合返回 AmbiguousMatchException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53080416/

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