Class UnaryExpressionConverterBase
Base class for unary expression converters.
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Kephas.Data.Client.Queries.Conversion.ExpressionConverters
Assembly: Kephas.Data.Client.dll
Syntax
public abstract class UnaryExpressionConverterBase : IExpressionConverter
Constructors
| Improve this Doc View SourceUnaryExpressionConverterBase(Func<Expression, UnaryExpression>)
Initializes a new instance of the UnaryExpressionConverterBase class.
Declaration
protected UnaryExpressionConverterBase(Func<Expression, UnaryExpression> unaryExpressionFactory)
Parameters
Type | Name | Description |
---|---|---|
System.Func<System.Linq.Expressions.Expression, System.Linq.Expressions.UnaryExpression> | unaryExpressionFactory | The unary expression factory. |
Methods
| Improve this Doc View SourceConvertExpression(IList<Expression>, Type, ParameterExpression)
Converts the provided expression to a LINQ expression.
Declaration
public virtual 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. |