MetadataWorkspace.GetFunctions 方法

定义

使用指定的名称、命名空间名称和数据模型返回函数的所有重载。

重载

名称 说明
GetFunctions(String, String, DataSpace)

使用指定的名称、命名空间名称和数据模型返回函数的所有重载。

GetFunctions(String, String, DataSpace, Boolean)

使用指定的名称、命名空间名称和数据模型返回函数的所有重载。

GetFunctions(String, String, DataSpace)

使用指定的名称、命名空间名称和数据模型返回函数的所有重载。

public:
 System::Collections::ObjectModel::ReadOnlyCollection<System::Data::Metadata::Edm::EdmFunction ^> ^ GetFunctions(System::String ^ name, System::String ^ namespaceName, System::Data::Metadata::Edm::DataSpace dataSpace);
public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace);
member this.GetFunctions : string * string * System.Data.Metadata.Edm.DataSpace -> System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction>
Public Function GetFunctions (name As String, namespaceName As String, dataSpace As DataSpace) As ReadOnlyCollection(Of EdmFunction)

参数

name
String

函数的名称。

namespaceName
String

函数的命名空间。

dataSpace
DataSpace

在其中搜索函数的概念模型。

返回

类型 ReadOnlyCollection<T> 集合,其中包含与给定命名空间和数据模型中指定名称匹配的所有函数。

适用于

GetFunctions(String, String, DataSpace, Boolean)

使用指定的名称、命名空间名称和数据模型返回函数的所有重载。

public:
 System::Collections::ObjectModel::ReadOnlyCollection<System::Data::Metadata::Edm::EdmFunction ^> ^ GetFunctions(System::String ^ name, System::String ^ namespaceName, System::Data::Metadata::Edm::DataSpace dataSpace, bool ignoreCase);
public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace, bool ignoreCase);
member this.GetFunctions : string * string * System.Data.Metadata.Edm.DataSpace * bool -> System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction>
Public Function GetFunctions (name As String, namespaceName As String, dataSpace As DataSpace, ignoreCase As Boolean) As ReadOnlyCollection(Of EdmFunction)

参数

name
String

函数的名称。

namespaceName
String

函数的命名空间。

dataSpace
DataSpace

在其中搜索函数的概念模型。

ignoreCase
Boolean

true 执行不区分大小写的搜索;否则,为 false.

返回

类型 ReadOnlyCollection<T> 集合,其中包含与给定命名空间和数据模型中指定名称匹配的所有函数。

适用于