EntityQueryModelVisitor.BindNavigationPathPropertyExpression 方法

定义

重载

BindNavigationPathPropertyExpression<TResult>(Expression, Func<IEnumerable<IPropertyBase>,IQuerySource,TResult>)

绑定导航路径属性表达式。

BindNavigationPathPropertyExpression<TResult>(Expression, Func<IReadOnlyList<IPropertyBase>,IQuerySource,TResult>)

绑定导航路径属性表达式。

BindNavigationPathPropertyExpression<TResult>(Expression, Func<IEnumerable<IPropertyBase>,IQuerySource,TResult>)

绑定导航路径属性表达式。

public virtual TResult BindNavigationPathPropertyExpression<TResult> (System.Linq.Expressions.Expression propertyExpression, Func<System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IPropertyBase>,Remotion.Linq.Clauses.IQuerySource,TResult> propertyBinder);
abstract member BindNavigationPathPropertyExpression : System.Linq.Expressions.Expression * Func<seq<Microsoft.EntityFrameworkCore.Metadata.IPropertyBase>, Remotion.Linq.Clauses.IQuerySource, 'Result> -> 'Result
override this.BindNavigationPathPropertyExpression : System.Linq.Expressions.Expression * Func<seq<Microsoft.EntityFrameworkCore.Metadata.IPropertyBase>, Remotion.Linq.Clauses.IQuerySource, 'Result> -> 'Result
Public Overridable Function BindNavigationPathPropertyExpression(Of TResult) (propertyExpression As Expression, propertyBinder As Func(Of IEnumerable(Of IPropertyBase), IQuerySource, TResult)) As TResult

类型参数

TResult

结果的类型。

参数

propertyExpression
Expression

属性表达式。

propertyBinder
Func<IEnumerable<IPropertyBase>,Remotion.Linq.Clauses.IQuerySource,TResult>

属性绑定器。

返回

TResult

TResult。

适用于

BindNavigationPathPropertyExpression<TResult>(Expression, Func<IReadOnlyList<IPropertyBase>,IQuerySource,TResult>)

绑定导航路径属性表达式。

public virtual TResult BindNavigationPathPropertyExpression<TResult> (System.Linq.Expressions.Expression propertyExpression, Func<System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IPropertyBase>,Remotion.Linq.Clauses.IQuerySource,TResult> propertyBinder);
abstract member BindNavigationPathPropertyExpression : System.Linq.Expressions.Expression * Func<System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IPropertyBase>, Remotion.Linq.Clauses.IQuerySource, 'Result> -> 'Result
override this.BindNavigationPathPropertyExpression : System.Linq.Expressions.Expression * Func<System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IPropertyBase>, Remotion.Linq.Clauses.IQuerySource, 'Result> -> 'Result
Public Overridable Function BindNavigationPathPropertyExpression(Of TResult) (propertyExpression As Expression, propertyBinder As Func(Of IReadOnlyList(Of IPropertyBase), IQuerySource, TResult)) As TResult

类型参数

TResult

结果的类型。

参数

propertyExpression
Expression

属性表达式。

propertyBinder
Func<IReadOnlyList<IPropertyBase>,Remotion.Linq.Clauses.IQuerySource,TResult>

属性绑定器。

返回

TResult

TResult。

适用于