Skip to content

Commit 85e9a45

Browse files
committed
Docs: Removed xref to multi fields topic that has been removed.
1 parent b46a7e6 commit 85e9a45

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Tests/ClientConcepts/HighLevel/Inference/FieldInference.doc.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Linq.Expressions;
@@ -233,7 +233,7 @@ public void ComplexFieldNameExpressions()
233233
Expect("metadata.var.created").WhenSerializing(Field<Project>(p => p.Metadata[variable].Created));
234234

235235
/**
236-
* If you are using Elasticearch's {ref_current}/_multi_fields.html[multi_fields], which you really should as they allow
236+
* If you are using Elasticearch's multi fields, which you really should as they allow
237237
* you to analyze a string in a number of different ways, these __"virtual"__ sub fields
238238
* do not always map back on to your POCO. By calling `.Suffix()` on expressions, you describe the sub fields that
239239
* should be mapped and <<auto-map, how they are mapped>>

src/Tests/ClientConcepts/HighLevel/Inference/PropertyInference.doc.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Linq.Expressions;
33
using Nest;
44
using Tests.Framework;
@@ -25,9 +25,9 @@ public PropertyNames(IndexingCluster cluster) : base(cluster)
2525

2626
/**=== Appending suffixes to a Lambda expression body
2727
* Suffixes can be appended to the body of a lambda expression, useful in cases where
28-
* you have a POCO property mapped as a {ref_current}/_multi_fields.html[multi_field]
28+
* you have a POCO property mapped as a multi field
2929
* and want to use strongly typed access based on the property, yet append a suffix to the
30-
* generated field name in order to access a particular `multi_field`.
30+
* generated field name in order to access a particular multi field.
3131
*
3232
* The `.Suffix()` extension method can be used for this purpose and when serializing expressions suffixed
3333
* in this way, the serialized field name resolves to the last token
@@ -52,7 +52,7 @@ [U] public void PropertyNamesAreResolvedToLastTokenUsingAppendSuffix()
5252

5353
/**=== Naming conventions
5454
* Currently, the name of a field cannot contain a `.` in Elasticsearch due to the potential for ambiguity with
55-
* a field that is mapped as a {ref_current}/_multi_fields.html[multi_field].
55+
* a field that is mapped as a multi field.
5656
*
5757
* In these cases, NEST allows the call to go to Elasticsearch, deferring the naming conventions to the server side and,
5858
* in the case of a `.` in a field name, a `400 Bad Response` is returned with a server error indicating the reason

0 commit comments

Comments
 (0)