你能用NEST elasticsearch客户端设置ReferenceLoopHandling吗?

时间:2013-07-18 13:09:48

标签: elasticsearch nest

我正在将ElasticSearch集成到我们的一个网站中。迁移产品时,我收到此错误。

self referencing loop detected for type 'mytype'

我已阅读过它,您可以将JsonSerializerSettings的属性ReferenceLoopHandling设置为ReferenceLoopHandling.Ignore。 NEST有什么办法吗?

//干杯

1 个答案:

答案 0 :(得分:0)

Nest使用

打开它耗尽的序列化设置
client.ModifyJsonSerializationSettings(s=> {
    //do with JsonSerializerSettings s here what you want
});

这使您还可以注册自定义转换器等。