다음을 통해 공유


TableValuedFunctionExpression 생성자

정의

오버로드

TableValuedFunctionExpression(IStoreFunction, IReadOnlyList<SqlExpression>)

TableValuedFunctionExpression 클래스의 새 인스턴스를 만듭니다.

TableValuedFunctionExpression(String, IReadOnlyList<SqlExpression>, IEnumerable<IAnnotation>)

TableValuedFunctionExpression 클래스의 새 인스턴스를 만듭니다.

TableValuedFunctionExpression(String, String, IReadOnlyList<SqlExpression>, IEnumerable<IAnnotation>)

TableValuedFunctionExpression 클래스의 새 인스턴스를 만듭니다.

TableValuedFunctionExpression(String, String, String, Boolean, IReadOnlyList<SqlExpression>, IEnumerable<IAnnotation>)

TableValuedFunctionExpression 클래스의 새 인스턴스를 만듭니다.

TableValuedFunctionExpression(IStoreFunction, IReadOnlyList<SqlExpression>)

TableValuedFunctionExpression 클래스의 새 인스턴스를 만듭니다.

public TableValuedFunctionExpression (Microsoft.EntityFrameworkCore.Metadata.IStoreFunction storeFunction, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression : Microsoft.EntityFrameworkCore.Metadata.IStoreFunction * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression
Public Sub New (storeFunction As IStoreFunction, arguments As IReadOnlyList(Of SqlExpression))

매개 변수

storeFunction
IStoreFunction

IStoreFunction 연결된 이 함수입니다.

arguments
IReadOnlyList<SqlExpression>

함수의 인수입니다.

적용 대상

TableValuedFunctionExpression(String, IReadOnlyList<SqlExpression>, IEnumerable<IAnnotation>)

TableValuedFunctionExpression 클래스의 새 인스턴스를 만듭니다.

public TableValuedFunctionExpression (string name, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations = default);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression : string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> * seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression
Public Sub New (name As String, arguments As IReadOnlyList(Of SqlExpression), Optional annotations As IEnumerable(Of IAnnotation) = Nothing)

매개 변수

name
String

함수의 이름입니다.

arguments
IReadOnlyList<SqlExpression>

함수의 인수입니다.

annotations
IEnumerable<IAnnotation>

이 식과 연결된 주석의 컬렉션입니다.

적용 대상

TableValuedFunctionExpression(String, String, IReadOnlyList<SqlExpression>, IEnumerable<IAnnotation>)

TableValuedFunctionExpression 클래스의 새 인스턴스를 만듭니다.

public TableValuedFunctionExpression (string alias, string name, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations = default);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression : string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> * seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression
Public Sub New (alias As String, name As String, arguments As IReadOnlyList(Of SqlExpression), Optional annotations As IEnumerable(Of IAnnotation) = Nothing)

매개 변수

alias
String

테이블 원본에 대한 문자열 별칭입니다.

name
String

함수의 이름입니다.

arguments
IReadOnlyList<SqlExpression>

함수의 인수입니다.

annotations
IEnumerable<IAnnotation>

이 식과 연결된 주석의 컬렉션입니다.

적용 대상

TableValuedFunctionExpression(String, String, String, Boolean, IReadOnlyList<SqlExpression>, IEnumerable<IAnnotation>)

TableValuedFunctionExpression 클래스의 새 인스턴스를 만듭니다.

protected TableValuedFunctionExpression (string alias, string name, string? schema, bool builtIn, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations = default);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression : string * string * string * bool * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> * seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression
Protected Sub New (alias As String, name As String, schema As String, builtIn As Boolean, arguments As IReadOnlyList(Of SqlExpression), Optional annotations As IEnumerable(Of IAnnotation) = Nothing)

매개 변수

alias
String

테이블 원본에 대한 문자열 별칭입니다.

name
String

함수의 이름입니다.

schema
String

함수의 스키마입니다.

builtIn
Boolean

함수가 기본 제공되는지 여부입니다.

arguments
IReadOnlyList<SqlExpression>

함수의 인수입니다.

annotations
IEnumerable<IAnnotation>

이 식과 연결된 주석의 컬렉션입니다.

적용 대상