gpt4 book ai didi

c# - 非泛型类型字段不能与类型参数一起使用

转载 作者:行者123 更新时间:2023-12-03 01:39:00 26 4
gpt4 key购买 nike

当我尝试将Source Filter添加到我的SearchRequest中时,出现错误

The non generic type 'Fields' can not be used with type arguments



Fields上。这是代码片段:
var request = new SearchRequest<ElasticSearchJsonObject.Rootobject>(Nest.Indices.Index("myindex"), Types.All)
{
From = 0,
Size = 10,
Query = query,
Source = new SourceFilter
{
Includes = "*",
Excludes = Fields<ElasticSearchJsonObject.Rootobject>(p => p.footer)
}
};

即使我直接尝试 Fields("footer"),也会在“排除字段”中显示错误。
这就是文档建议的方式。

我正在使用Elastic Search 6.0.2和NEST 6.0.1。

最佳答案

对于 Fields ,它支持多种类型的隐式转换,包括

  • 推断字段,例如
    Nest.Infer.Fields<ElasticSearchJsonObject.Rootobject>(p => p.footer)
  • 字符串,例如
    "footer"
  • System.Reflection.PropertyInfo例如
    typeof(ElasticSearchJsonObject.Rootobject).GetProperty("footer")

  • 本质上,它是 Field的一个版本,它支持多个字段。 Check out the documentation on Field inference.

    关于c# - 非泛型类型字段不能与类型参数一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49581494/

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