Class JoinProcessorDescriptor<T>
Joins each element of an array into a single string using a separator
character between each element. Throws an error when the field is not an array.
Inheritance
JoinProcessorDescriptor<T>
Assembly: OpenSearch.Client.dll
Syntax
public class JoinProcessorDescriptor<T> : ProcessorDescriptorBase<JoinProcessorDescriptor<T>, IJoinProcessor>, IDescriptor, IJoinProcessor, IProcessor where T : class
Type Parameters
Properties
|
Edit this page
View Source
Name
Declaration
protected override string Name { get; }
Property Value
Overrides
Methods
|
Edit this page
View Source
Field(Field)
Declaration
public JoinProcessorDescriptor<T> Field(Field field)
Parameters
Type |
Name |
Description |
Field |
field |
|
Returns
|
Edit this page
View Source
Field<TValue>(Expression<Func<T, TValue>>)
Declaration
public JoinProcessorDescriptor<T> Field<TValue>(Expression<Func<T, TValue>> objectPath)
Parameters
Returns
Type Parameters
|
Edit this page
View Source
Separator(string)
Declaration
public JoinProcessorDescriptor<T> Separator(string separator)
Parameters
Type |
Name |
Description |
string |
separator |
|
Returns
|
Edit this page
View Source
TargetField(Field)
The field to assign the joined value to, by default field is updated in-place
Declaration
public JoinProcessorDescriptor<T> TargetField(Field field)
Parameters
Type |
Name |
Description |
Field |
field |
|
Returns
|
Edit this page
View Source
TargetField(Expression<Func<T, object>>)
The field to assign the joined value to, by default field is updated in-place
Declaration
public JoinProcessorDescriptor<T> TargetField(Expression<Func<T, object>> objectPath)
Parameters
Returns
Implements
Extension Methods