ODataUtils.IsAlwaysBindable Method
Gets the value of IsAlwaysBindable annotation on the functionImport.
Namespace: Microsoft.Data.OData
Assembly: Microsoft.Data.OData (in Microsoft.Data.OData.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function IsAlwaysBindable ( _
model As IEdmModel, _
functionImport As IEdmFunctionImport _
) As Boolean
'Usage
Dim model As IEdmModel
Dim functionImport As IEdmFunctionImport
Dim returnValue As Boolean
returnValue = model.IsAlwaysBindable(functionImport)
public static bool IsAlwaysBindable(
this IEdmModel model,
IEdmFunctionImport functionImport
)
[ExtensionAttribute]
public:
static bool IsAlwaysBindable(
IEdmModel^ model,
IEdmFunctionImport^ functionImport
)
static member IsAlwaysBindable :
model:IEdmModel *
functionImport:IEdmFunctionImport -> bool
public static function IsAlwaysBindable(
model : IEdmModel,
functionImport : IEdmFunctionImport
) : boolean
Parameters
- model
Type: Microsoft.Data.Edm.IEdmModel
The IEdmModel containing the annotation.
- functionImport
Type: Microsoft.Data.Edm.IEdmFunctionImport
The IEdmFunctionImport to get the annotation from.
Return Value
Type: System.Boolean
The value of the annotation if it exists; false otherwise.
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).
Exceptions
Exception | Condition |
---|---|
ODataException | functionImport |