ExtensionMethods.FindValueTerm Method
Searches for a value term with the given name in this model and all referenced models and returns null if no such value term exists.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function FindValueTerm ( _
model As IEdmModel, _
qualifiedName As String _
) As IEdmValueTerm
'Usage
Dim model As IEdmModel
Dim qualifiedName As String
Dim returnValue As IEdmValueTerm
returnValue = model.FindValueTerm(qualifiedName)
public static IEdmValueTerm FindValueTerm(
this IEdmModel model,
string qualifiedName
)
[ExtensionAttribute]
public:
static IEdmValueTerm^ FindValueTerm(
IEdmModel^ model,
String^ qualifiedName
)
static member FindValueTerm :
model:IEdmModel *
qualifiedName:string -> IEdmValueTerm
public static function FindValueTerm(
model : IEdmModel,
qualifiedName : String
) : IEdmValueTerm
Parameters
- model
Type: Microsoft.Data.Edm.IEdmModel
The model to search.
- qualifiedName
Type: System.String
The qualified name of the value term being found.
Return Value
Type: Microsoft.Data.Edm.IEdmValueTerm
The requested value term, or null if no such value term exists.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmModel. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).