共用方式為


ExpressionExtensions.CreateKeyValuesExpression 方法

定義

Expression建立樹狀結構,代表在指定的運算式上讀取索引鍵值。

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

public static System.Linq.Expressions.Expression CreateKeyValuesExpression (this System.Linq.Expressions.Expression target, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty> properties, bool makeNullable = false);
static member CreateKeyValuesExpression : System.Linq.Expressions.Expression * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty> * bool -> System.Linq.Expressions.Expression
<Extension()>
Public Function CreateKeyValuesExpression (target As Expression, properties As IReadOnlyList(Of IProperty), Optional makeNullable As Boolean = false) As Expression

參數

target
Expression

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

properties
IReadOnlyList<IProperty>

要用來產生索引鍵值的屬性清單。

makeNullable
Boolean

值,指出索引鍵值是否應為可為 Null 讀取。

傳回

要讀取索引鍵值的運算式。

適用於