Class EqExpressionConverter
Expression converter for the equals operator.
Inheritance
System.Object
EqExpressionConverter
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
[Operator("$eq")]
public class EqExpressionConverter : MethodCallExpressionConverterBase<object, object, bool>, IExpressionConverter
Remarks
The equality expression converter uses the object.Equals to support the reference types (like string).
Constructors
| Improve this Doc View SourceEqExpressionConverter()
Initializes a new instance of the EqExpressionConverter class.
Declaration
public EqExpressionConverter()
Methods
| Improve this Doc View SourcePreProcessArguments(IEnumerable<Expression>)
Gets the call arguments.
Declaration
protected override IEnumerable<Expression> PreProcessArguments(IEnumerable<Expression> args)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> | args | The arguments. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> | The call arguments. |