Class ExpressionExtensions
Inheritance
ExpressionExtensions
Assembly: OpenSearch.Client.dll
Syntax
public static class ExpressionExtensions
Methods
|
Edit this page
View Source
AppendSuffix<T>(Expression<Func<T, object>>, string)
Appends suffix
to the path separating it with a dot.
This is especially useful with multi fields.
Declaration
public static Expression<Func<T, object>> AppendSuffix<T>(this Expression<Func<T, object>> expression, string suffix)
Parameters
Type |
Name |
Description |
Expression<Func<T, object>> |
expression |
the expression to which the suffix should be applied
|
string |
suffix |
the suffix
|
Returns
Type Parameters
|
Edit this page
View Source
AppendSuffix<T, TValue>(Expression<Func<T, TValue>>, string)
Declaration
public static Expression<Func<T, TValue>> AppendSuffix<T, TValue>(this Expression<Func<T, TValue>> expression, string suffix)
Parameters
Returns
Type Parameters
Name |
Description |
T |
|
TValue |
|