NullConditionalExpression(Expression, Expression) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new instance of NullConditionalExpression.
public NullConditionalExpression(System.Linq.Expressions.Expression caller, System.Linq.Expressions.Expression accessOperation);
new Microsoft.EntityFrameworkCore.Query.NullConditionalExpression : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Query.NullConditionalExpression
Public Sub New (caller As Expression, accessOperation As Expression)
Parameters
- caller
- Expression
Expression representing potentially nullable caller that needs to be tested for it's nullability.
- accessOperation
- Expression
Expression representing access operation.