Delen via


SelectExpression.BindProperty(IProperty, IQuerySource) Method

Definition

Generates an expression bound to this select expression for the supplied property.

public virtual System.Linq.Expressions.Expression BindProperty (Microsoft.EntityFrameworkCore.Metadata.IProperty property, Remotion.Linq.Clauses.IQuerySource querySource);
abstract member BindProperty : Microsoft.EntityFrameworkCore.Metadata.IProperty * Remotion.Linq.Clauses.IQuerySource -> System.Linq.Expressions.Expression
override this.BindProperty : Microsoft.EntityFrameworkCore.Metadata.IProperty * Remotion.Linq.Clauses.IQuerySource -> System.Linq.Expressions.Expression
Public Overridable Function BindProperty (property As IProperty, querySource As IQuerySource) As Expression

Parameters

property
IProperty

The corresponding EF property.

querySource
Remotion.Linq.Clauses.IQuerySource

The originating query source.

Returns

The bound expression which can be used to refer column from this select expression.

Applies to