方法的类型参数..无法从使用情况中推断
本文关键字:情况 用情 类型参数 方法 | 更新日期: 2023-09-27 17:57:13
代码如下所示:
private IQueryable<TSearchResultItem> Search(bool flag)
{
var index = ContentSearchManager.GetIndex(Index);
var ctx = index.CreateSearchContext(SearchSecurityOptions.EnableSecurityCheck);
var items = ctx.GetQueryable<TSearchResultItem>();
var search = HttpContext.Current.Request[SearchTxtParameter];
if (!string.IsNullOrEmpty(search))
{
var predicate = PredicateBuilder.True<LookbookSearchResultItem>();
predicate = predicate.And(x => x.Contributors != null);
return items.Filter(predicate);
}
return items;
}
问题出在这一行:
return items.Filter(predicate);
错误:
Error CS0411 The type arguments for method 'QueryableExtensions.Filter<TSource>(IQueryable<TSource>, Expression<Func<TSource, bool>>)' cannot be inferred from the usage. Try specifying the type arguments explicitly.
如何克服它?
你的问题是你传递给Filter
扩展方法的谓词需要一个TSource
(即 LookbookSearchResultItem
) 与TSource
不同(即 TSearchResultItem
)由Filter
方法所期望。
由于尚未显式指定 Filter
方法所需的类型,因此编译器会混淆要考虑TSearchResultItem
或LookbookSearchResultItem
的类型,这就是您收到此错误的原因。