다음을 통해 공유


SelectExpression.AddToProjection 메서드

정의

오버로드

AddToProjection(AliasExpression)

프로젝션에 를 AliasExpression 추가합니다.

AddToProjection(ColumnExpression)

프로젝션에 ColumnExpression을 추가합니다.

AddToProjection(Expression)

프로젝션에 식을 추가합니다.

AddToProjection(IProperty, IQuerySource)

프로젝션에 열을 추가합니다.

AddToProjection(Expression, Boolean)

프로젝션에 식을 추가합니다.

AddToProjection(String, IProperty, IQuerySource)

프로젝션에 열을 추가합니다.

AddToProjection(AliasExpression)

프로젝션에 를 AliasExpression 추가합니다.

public virtual int AddToProjection (Microsoft.EntityFrameworkCore.Query.Expressions.AliasExpression aliasExpression);
abstract member AddToProjection : Microsoft.EntityFrameworkCore.Query.Expressions.AliasExpression -> int
override this.AddToProjection : Microsoft.EntityFrameworkCore.Query.Expressions.AliasExpression -> int
Public Overridable Function AddToProjection (aliasExpression As AliasExpression) As Integer

매개 변수

aliasExpression
AliasExpression

별칭 식입니다.

반환

에 추가된 식의 해당 인덱스입니다 Projection.

적용 대상

AddToProjection(ColumnExpression)

프로젝션에 ColumnExpression을 추가합니다.

public virtual int AddToProjection (Microsoft.EntityFrameworkCore.Query.Expressions.ColumnExpression columnExpression);
abstract member AddToProjection : Microsoft.EntityFrameworkCore.Query.Expressions.ColumnExpression -> int
override this.AddToProjection : Microsoft.EntityFrameworkCore.Query.Expressions.ColumnExpression -> int
Public Overridable Function AddToProjection (columnExpression As ColumnExpression) As Integer

매개 변수

columnExpression
ColumnExpression

열 식입니다.

반환

에 추가된 식의 해당 인덱스입니다 Projection.

적용 대상

AddToProjection(Expression)

프로젝션에 식을 추가합니다.

public virtual int AddToProjection (System.Linq.Expressions.Expression expression);
abstract member AddToProjection : System.Linq.Expressions.Expression -> int
override this.AddToProjection : System.Linq.Expressions.Expression -> int
Public Overridable Function AddToProjection (expression As Expression) As Integer

매개 변수

expression
Expression

식입니다.

반환

에 추가된 식의 해당 인덱스입니다 Projection.

적용 대상

AddToProjection(IProperty, IQuerySource)

Source:
SelectExpression.cs
Source:
SelectExpression.cs

프로젝션에 열을 추가합니다.

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

매개 변수

property
IProperty

해당 EF 속성입니다.

querySource
Remotion.Linq.Clauses.IQuerySource

원래 쿼리 원본입니다.

반환

에 추가된 식의 해당 인덱스입니다 Projection.

적용 대상

AddToProjection(Expression, Boolean)

Source:
SelectExpression.cs
Source:
SelectExpression.cs

프로젝션에 식을 추가합니다.

public virtual int AddToProjection (System.Linq.Expressions.Expression expression, bool resetProjectStar);
public virtual int AddToProjection (System.Linq.Expressions.Expression expression, bool resetProjectStar = true);
abstract member AddToProjection : System.Linq.Expressions.Expression * bool -> int
override this.AddToProjection : System.Linq.Expressions.Expression * bool -> int
Public Overridable Function AddToProjection (expression As Expression, resetProjectStar As Boolean) As Integer
Public Overridable Function AddToProjection (expression As Expression, Optional resetProjectStar As Boolean = true) As Integer

매개 변수

expression
Expression

식입니다.

resetProjectStar
Boolean

true이면 의 IsProjectStar값을 다시 설정합니다.

반환

에 추가된 식의 해당 인덱스입니다 Projection.

적용 대상

AddToProjection(String, IProperty, IQuerySource)

프로젝션에 열을 추가합니다.

public virtual int AddToProjection (string column, Microsoft.EntityFrameworkCore.Metadata.IProperty property, Remotion.Linq.Clauses.IQuerySource querySource);
abstract member AddToProjection : string * Microsoft.EntityFrameworkCore.Metadata.IProperty * Remotion.Linq.Clauses.IQuerySource -> int
override this.AddToProjection : string * Microsoft.EntityFrameworkCore.Metadata.IProperty * Remotion.Linq.Clauses.IQuerySource -> int
Public Overridable Function AddToProjection (column As String, property As IProperty, querySource As IQuerySource) As Integer

매개 변수

column
String

열 이름입니다.

property
IProperty

해당 EF 속성입니다.

querySource
Remotion.Linq.Clauses.IQuerySource

원래 쿼리 원본입니다.

반환

에 추가된 식의 해당 인덱스입니다 Projection.

적용 대상