EdmFunctionImport クラスの新しいインスタンスを初期化します。
名前空間: Microsoft.Data.Edm.Library
アセンブリ: Microsoft.Data.Edm (Microsoft.Data.Edm.dll)
構文
'宣言
Public Sub New ( _
container As IEdmEntityContainer, _
name As String, _
returnType As IEdmTypeReference, _
entitySet As IEdmExpression, _
sideEffecting As Boolean, _
composable As Boolean, _
bindable As Boolean _
)
'使用
Dim container As IEdmEntityContainer
Dim name As String
Dim returnType As IEdmTypeReference
Dim entitySet As IEdmExpression
Dim sideEffecting As Boolean
Dim composable As Boolean
Dim bindable As Boolean
Dim instance As New EdmFunctionImport(container, _
name, returnType, entitySet, sideEffecting, _
composable, bindable)
public EdmFunctionImport(
IEdmEntityContainer container,
string name,
IEdmTypeReference returnType,
IEdmExpression entitySet,
bool sideEffecting,
bool composable,
bool bindable
)
public:
EdmFunctionImport(
IEdmEntityContainer^ container,
String^ name,
IEdmTypeReference^ returnType,
IEdmExpression^ entitySet,
bool sideEffecting,
bool composable,
bool bindable
)
new :
container:IEdmEntityContainer *
name:string *
returnType:IEdmTypeReference *
entitySet:IEdmExpression *
sideEffecting:bool *
composable:bool *
bindable:bool -> EdmFunctionImport
public function EdmFunctionImport(
container : IEdmEntityContainer,
name : String,
returnType : IEdmTypeReference,
entitySet : IEdmExpression,
sideEffecting : boolean,
composable : boolean,
bindable : boolean
)
パラメーター
- container
型: Microsoft.Data.Edm.IEdmEntityContainer
この関数インポートを含む IEdmEntityContainer。
- name
型: System.String
関数インポートの名前。
- returnType
型: Microsoft.Data.Edm.IEdmTypeReference
関数インポートの戻り値の型。
- entitySet
型: Microsoft.Data.Edm.Expressions.IEdmExpression
この関数インポートによって返されるエンティティを含むエンティティ セット。サポートされている 2 つの式の種類は IEdmEntitySetReferenceExpression と IEdmPathExpression です。
- sideEffecting
型: System.Boolean
この関数インポートに副作用があるかどうかを示す値。
- composable
型: System.Boolean
この関数インポートを式内で構成できるかどうかを示す値。
- bindable
型: System.Boolean
この関数インポートをこの関数インポートの最初のパラメーターの型の拡張メソッドとして使用できるかどうかを示す値。