共用方式為


ExpressionExtensions.CreateValueBufferReadValueExpression 方法

定義

Expression建立樹狀結構,代表從 讀取值ValueBuffer

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

public static System.Linq.Expressions.Expression CreateValueBufferReadValueExpression (this System.Linq.Expressions.Expression valueBuffer, Type type, int index, Microsoft.EntityFrameworkCore.Metadata.IPropertyBase property);
public static System.Linq.Expressions.Expression CreateValueBufferReadValueExpression (this System.Linq.Expressions.Expression valueBuffer, Type type, int index, Microsoft.EntityFrameworkCore.Metadata.IPropertyBase? property);
static member CreateValueBufferReadValueExpression : System.Linq.Expressions.Expression * Type * int * Microsoft.EntityFrameworkCore.Metadata.IPropertyBase -> System.Linq.Expressions.Expression
<Extension()>
Public Function CreateValueBufferReadValueExpression (valueBuffer As Expression, type As Type, index As Integer, property As IPropertyBase) As Expression

參數

valueBuffer
Expression

公開 的 ValueBuffer 運算式。

type
Type

要讀取的類型。

index
Int32

要從中讀取之緩衝區中的索引。

property
IPropertyBase

如果有的話,正在讀取的 IPropertyBase。

傳回

要讀取值的運算式。

適用於