SelectExpression.AddToProjection 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Entity Framework