【发布时间】:2016-11-02 21:53:49
【问题描述】:
在我的数据存储库中,我有一个基类和派生类,如下所示。
public abstract class RepositoryBase<T> : IRepository<T> where T : EntityBase
{
public async Task<T> FindOneAsync(Expression<Func<T, bool>> predicate)
{
List<T> list = await SearchForAsync(predicate);
return list.FirstOrDefault();
}
}
public class CommentUrlRepository : RepositoryBase<CommentUrl>, ICommentUrlRepository
{
public async Task<CommentUrlCommon> FindOneAsync(
Expression<Func<CommentUrlCommon, bool>> predicate
)
{
Expression<Func<CommentUrl, bool>> lambda = Cast(predicate);
CommentUrl commentUrl = await FindOneAsync(lambda);
return MappingManager.Map(commentUrl);
}
private Expression<Func<CommentUrl, bool>> Cast(
Expression<Func<CommentUrlCommon, bool>> predicate
)
{
Expression converted =
Expression.Convert(
predicate,
typeof(Expression<Func<CommentUrl, bool>>)
);
// throws exception
// No coercion operator is defined between types
return Expression.Lambda<Func<CommentUrl, bool>>(converted, predicate.Parameters);
}
}
当我点击“Cast”功能时,出现以下错误:
在类型“System.Func`2[CommentUrlCommon,System.Boolean]”和“System.Linq.Expressions.Expression`1[System.Func`2[CommentUrl,System.Boolean]]”之间没有定义强制运算符.
如何转换此表达式值?
【问题讨论】:
-
你必须拆开并重建表达式,至少通过替换它的参数(可能还有参数上的任何成员访问表达式)。这可能是一项艰苦的工作,而且很容易出错。您可以(并且可能应该)通过不公开任何接受表达式的方法来避免这样做。改用更专业的方法(即
FindOneAsync(int primaryKey))。
标签: c# linq expression