Interface IExpressionConverter
Singleton application service contract for expression converters.
Namespace: Kephas.Data.Client.Queries.Conversion
Assembly: Kephas.Data.Client.dll
Syntax
[SingletonAppServiceContract(AllowMultiple = true, MetadataAttributes = new Type[]{typeof(OperatorAttribute)})]
public interface IExpressionConverter
Methods
| Improve this Doc View SourceConvertExpression(IList<Expression>, Type, ParameterExpression)
Converts the provided expression to a LINQ expression.
Declaration
Expression ConvertExpression(IList<Expression> args, Type clientItemType, ParameterExpression lambdaArg)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IList<System.Linq.Expressions.Expression> | args | The arguments. |
System.Type | clientItemType | The client item type. |
System.Linq.Expressions.ParameterExpression | lambdaArg | The lambda argument. |
Returns
Type | Description |
---|---|
System.Linq.Expressions.Expression | The converted expression. |