다음을 통해 공유


DbFunctionCommandTree 클래스

정의

데이터베이스 함수의 호출을 나타냅니다.

public sealed class DbFunctionCommandTree : System.Data.Entity.Core.Common.CommandTrees.DbCommandTree
type DbFunctionCommandTree = class
    inherit DbCommandTree
Public NotInheritable Class DbFunctionCommandTree
Inherits DbCommandTree
상속
DbFunctionCommandTree

생성자

DbFunctionCommandTree(MetadataWorkspace, DataSpace, EdmFunction, TypeUsage, IEnumerable<KeyValuePair<String,TypeUsage>>)

지정된 메타데이터 작업 영역, 데이터 공간 및 함수 메타데이터를 사용하는 새 DbFunctionCommandTree를 생성합니다.

속성

CommandTreeKind

명령 트리 종류를 가져오거나 설정합니다.

DataSpace

이 명령 트리에서 사용하는 메타데이터가 상주해야 하는 데이터 공간을 가져옵니다.

(다음에서 상속됨 DbCommandTree)
EdmFunction

호출 중인 함수를 나타내는 EdmFunction을 가져옵니다.

MetadataWorkspace

이 명령 트리에서 사용하는 메타데이터 작업 영역을 가져옵니다.

(다음에서 상속됨 DbCommandTree)
Parameters

DbCommandTree 내에서 참조할 수 있는 각 매개 변수의 이름과 해당 형식을 가져옵니다.

(다음에서 상속됨 DbCommandTree)
ResultType

함수의 첫 번째 결과 집합에 대한 예상 결과 형식을 가져옵니다.

UseDatabaseNullSemantics

두 피연산자를 비교할 때 데이터베이스 null 의미 체계가 표시되는지 여부를 나타내는 값을 가져옵니다. 이 두 피연산자는 모두 잠재적으로 null 허용일 수 있습니다. 기본값은 true입니다.

예를 들어 (operand1 == operand2)는 다음과 같이 변환됩니다.

(operand1 = operand2)

UseDatabaseNullSemantics가 true이면 각각

(((operand1 = operand2) AND (NOT (operand1 IS NULL OR operand2 IS NULL)) OR ((operand1 IS NULL) AND (operand2 IS NULL))

UseDatabaseNullSemantics가 false이면 입니다.

(다음에서 상속됨 DbCommandTree)

메서드

ToString()

String 이 명령을 나타내는 를 반환합니다.

(다음에서 상속됨 DbCommandTree)

적용 대상