ExpressionExtensions.CreateEFPropertyExpression Metodo

Definizione

Crea un Expression albero che rappresenta l'accesso alle proprietà EF in un'espressione specificata.

Questo metodo viene in genere usato dai provider di database (e altre estensioni). In genere non viene usato nel codice dell'applicazione.

public static System.Linq.Expressions.Expression CreateEFPropertyExpression (this System.Linq.Expressions.Expression target, Microsoft.EntityFrameworkCore.Metadata.IPropertyBase property, bool makeNullable = true);
static member CreateEFPropertyExpression : System.Linq.Expressions.Expression * Microsoft.EntityFrameworkCore.Metadata.IPropertyBase * bool -> System.Linq.Expressions.Expression
<Extension()>
Public Function CreateEFPropertyExpression (target As Expression, property As IPropertyBase, Optional makeNullable As Boolean = true) As Expression

Parametri

target
Expression

Espressione che sarà radice per l'operazione di lettura generata.

property
IPropertyBase

Proprietà a cui accedere.

makeNullable
Boolean

Valore che indica se il valore può essere nullable.

Restituisce

Espressione per accedere alla proprietà EF in un'espressione specificata.

Si applica a