ExtensionMethods.FindDeclaredOperationImports(IEdmModel, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Searches for the operation imports by the specified name in default container and .Extends containers, returns an empty enumerable if no operation import exists.
public static System.Collections.Generic.IEnumerable<Microsoft.OData.Edm.IEdmOperationImport> FindDeclaredOperationImports (this Microsoft.OData.Edm.IEdmModel model, string qualifiedName);
static member FindDeclaredOperationImports : Microsoft.OData.Edm.IEdmModel * string -> seq<Microsoft.OData.Edm.IEdmOperationImport>
<Extension()>
Public Function FindDeclaredOperationImports (model As IEdmModel, qualifiedName As String) As IEnumerable(Of IEdmOperationImport)
Parameters
- model
- IEdmModel
The model to search.
- qualifiedName
- String
The qualified name of the operation import which may or may not include the container name.
Returns
All operation imports that can be found by the specified name, returns an empty enumerable if no operation import exists.