Expression.Coalesce Método

Definição

Cria um BinaryExpression que representa uma operação de união.Creates a BinaryExpression that represents a coalescing operation.

Sobrecargas

Coalesce(Expression, Expression, LambdaExpression)

Cria uma BinaryExpression que representa uma operação de união, dada uma função de conversão.Creates a BinaryExpression that represents a coalescing operation, given a conversion function.

Coalesce(Expression, Expression)

Cria um BinaryExpression que representa uma operação de união.Creates a BinaryExpression that represents a coalescing operation.

Coalesce(Expression, Expression, LambdaExpression)

Cria uma BinaryExpression que representa uma operação de união, dada uma função de conversão.Creates a BinaryExpression that represents a coalescing operation, given a conversion function.

public:
 static System::Linq::Expressions::BinaryExpression ^ Coalesce(System::Linq::Expressions::Expression ^ left, System::Linq::Expressions::Expression ^ right, System::Linq::Expressions::LambdaExpression ^ conversion);
public static System.Linq.Expressions.BinaryExpression Coalesce (System.Linq.Expressions.Expression left, System.Linq.Expressions.Expression right, System.Linq.Expressions.LambdaExpression conversion);
public static System.Linq.Expressions.BinaryExpression Coalesce (System.Linq.Expressions.Expression left, System.Linq.Expressions.Expression right, System.Linq.Expressions.LambdaExpression? conversion);
static member Coalesce : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression * System.Linq.Expressions.LambdaExpression -> System.Linq.Expressions.BinaryExpression
Public Shared Function Coalesce (left As Expression, right As Expression, conversion As LambdaExpression) As BinaryExpression

Parâmetros

left
Expression

Um Expression para definir a propriedade Left igual a ele.An Expression to set the Left property equal to.

right
Expression

Um Expression para definir a propriedade Right igual a ele.An Expression to set the Right property equal to.

conversion
LambdaExpression

Um LambdaExpression para definir a propriedade Conversion igual a ele.A LambdaExpression to set the Conversion property equal to.

Retornos

BinaryExpression

Um BinaryExpression que tem a propriedade NodeType igual a Coalesce e as propriedades Left, Right e Conversion definidas para os valores especificados.A BinaryExpression that has the NodeType property equal to Coalesce and the Left, Right and Conversion properties set to the specified values.

Exceções

left ou right é null.left or right is null.

left.Type e right.Type não são conversíveis entre si.left.Type and right.Type are not convertible to each other.

- ou --or- conversion não é null e conversion. O tipo é um tipo delegado que não aceita exatamente um argumento.conversion is not null and conversion.Type is a delegate type that does not take exactly one argument.

A propriedade Type do left não representa um tipo de referência nem um tipo de valor que permite um valor null.The Type property of left does not represent a reference type or a nullable value type.

- ou --or- A propriedade Type de left representa um tipo que não é atribuível ao tipo de parâmetro do tipo delegado conversion.Type.The Type property of left represents a type that is not assignable to the parameter type of the delegate type conversion.Type.

- ou --or- A propriedade Type de right não é igual ao tipo de retorno do tipo delegado conversion.Type.The Type property of right is not equal to the return type of the delegate type conversion.Type.

Comentários

A Method propriedade de resultante BinaryExpression é null e ambas IsLifted e IsLiftedToNull são definidas como false .The Method property of the resulting BinaryExpression is null and both IsLifted and IsLiftedToNull are set to false.

A Type Propriedade do resultante BinaryExpression é igual ao tipo de resultado da operação de União.The Type property of the resulting BinaryExpression is equal to the result type of the coalescing operation.

As regras a seguir determinam o tipo de resultado:The following rules determine the result type:

  • Se left . O tipo representa um tipo anulável e right . O tipo é implicitamente conversível para o tipo não anulável correspondente, o tipo de resultado é o equivalente não anulável de left . Escreva.If left.Type represents a nullable type and right.Type is implicitly convertible to the corresponding non-nullable type, the result type is the non-nullable equivalent of left.Type.

  • Caso contrário, se right . O tipo é implicitamente conversível para left . Tipo, o tipo de resultado é left . Escreva.Otherwise, if right.Type is implicitly convertible to left.Type, the result type is left.Type.

  • Caso contrário, se o equivalente não anulável de left . O tipo é implicitamente conversível para right . Tipo, o tipo de resultado é right . Escreva.Otherwise, if the non-nullable equivalent of left.Type is implicitly convertible to right.Type, the result type is right.Type.

Aplica-se a

Coalesce(Expression, Expression)

Cria um BinaryExpression que representa uma operação de união.Creates a BinaryExpression that represents a coalescing operation.

public:
 static System::Linq::Expressions::BinaryExpression ^ Coalesce(System::Linq::Expressions::Expression ^ left, System::Linq::Expressions::Expression ^ right);
public static System.Linq.Expressions.BinaryExpression Coalesce (System.Linq.Expressions.Expression left, System.Linq.Expressions.Expression right);
static member Coalesce : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression -> System.Linq.Expressions.BinaryExpression
Public Shared Function Coalesce (left As Expression, right As Expression) As BinaryExpression

Parâmetros

left
Expression

Um Expression para definir a propriedade Left igual a ele.An Expression to set the Left property equal to.

right
Expression

Um Expression para definir a propriedade Right igual a ele.An Expression to set the Right property equal to.

Retornos

BinaryExpression

Um BinaryExpression que tem a propriedade NodeType igual a Coalesce e as propriedades Left e Right definidas com os valores especificados.A BinaryExpression that has the NodeType property equal to Coalesce and the Left and Right properties set to the specified values.

Exceções

left ou right é null.left or right is null.

A propriedade Type do left não representa um tipo de referência nem um tipo de valor que permite um valor null.The Type property of left does not represent a reference type or a nullable value type.

left.Type e right.Type não são conversíveis entre si.left.Type and right.Type are not convertible to each other.

Comentários

A Method propriedade de resultante BinaryExpression é null e ambas IsLifted e IsLiftedToNull são definidas como false .The Method property of the resulting BinaryExpression is null and both IsLifted and IsLiftedToNull are set to false. A Type propriedade é igual ao tipo de resultado da operação de União.The Type property is equal to the result type of the coalescing operation. A propriedade Conversion é null.The Conversion property is null.

Tipo de resultadoResult Type

As regras a seguir determinam o tipo de resultado:The following rules determine the result type:

  • Se left . O tipo representa um tipo anulável e right . O tipo é implicitamente conversível para o tipo não anulável correspondente, o tipo de resultado é o equivalente não anulável de left . Escreva.If left.Type represents a nullable type and right.Type is implicitly convertible to the corresponding non-nullable type, the result type is the non-nullable equivalent of left.Type.

  • Caso contrário, se right . O tipo é implicitamente conversível para left . Tipo, o tipo de resultado é left . Escreva.Otherwise, if right.Type is implicitly convertible to left.Type, the result type is left.Type.

  • Caso contrário, se o equivalente não anulável de left . O tipo é implicitamente conversível para right . Tipo, o tipo de resultado é right . Escreva.Otherwise, if the non-nullable equivalent of left.Type is implicitly convertible to right.Type, the result type is right.Type.

Aplica-se a