共用方式為


ExpressionExtensions.CreateEFPropertyExpression 方法

定義

Expression建立樹狀結構,表示指定運算式上的 EF 屬性存取。

這個方法通常由資料庫提供者 (和其他延伸模組) 使用。 它通常不會用於應用程式程式碼。

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

參數

target
Expression

將做為所產生讀取作業根目錄的運算式。

property
IPropertyBase

要存取的屬性。

makeNullable
Boolean

值,指出此值是否可為 Null。

傳回

運算式,用來存取指定運算式上的 EF 屬性。

適用於