Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,11 @@ back to NEST's built-in serializer.

We ship a separate {nuget}/NEST.JsonNetSerializer[NEST.JsonNetSerializer] package that helps in composing a custom `SourceSerializer`
using `Json.NET`, that is smart enough to delegate the serialization of known NEST types back to the built-in
`RequestResponseSerializer`. This package is also useful if you want to control how your documents and values are stored
and retrieved from Elasticsearch using `Json.NET`, without interfering with the way NEST uses `Json.NET` internally.
`RequestResponseSerializer`. This package is also useful if

. You want to control how your documents and values are stored and retrieved from Elasticsearch using `Json.NET`

. You want to use `Newtonsoft.Json.Linq` types such as `JObject` within your documents

The easiest way to hook this custom source serializer up is as follows

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,10 @@ public class MyPercolationDocument
*
* We ship a separate {nuget}/NEST.JsonNetSerializer[NEST.JsonNetSerializer] package that helps in composing a custom `SourceSerializer`
* using `Json.NET`, that is smart enough to delegate the serialization of known NEST types back to the built-in
* `RequestResponseSerializer`. This package is also useful if you want to control how your documents and values are stored
* and retrieved from Elasticsearch using `Json.NET`, without interfering with the way NEST uses `Json.NET` internally.
* `RequestResponseSerializer`. This package is also useful if
*
* . You want to control how your documents and values are stored and retrieved from Elasticsearch using `Json.NET`
* . You want to use `Newtonsoft.Json.Linq` types such as `JObject` within your documents
*
* The easiest way to hook this custom source serializer up is as follows
*/
Expand Down