IEdmDirectValueAnnotationsManager Interface
Manages getting and setting direct value annotations on EDM elements.
Namespace: Microsoft.Data.Edm.Annotations
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
Public Interface IEdmDirectValueAnnotationsManager
'Usage
Dim instance As IEdmDirectValueAnnotationsManager
public interface IEdmDirectValueAnnotationsManager
public interface class IEdmDirectValueAnnotationsManager
type IEdmDirectValueAnnotationsManager = interface end
public interface IEdmDirectValueAnnotationsManager
The IEdmDirectValueAnnotationsManager type exposes the following members.
Methods
Name | Description | |
---|---|---|
GetAnnotationValue | Retrieves an annotation value for an EDM element. Returns null if no annotation with the given name exists for the given element. | |
GetAnnotationValues | Retrieves a set of annotation values. For each requested value, returns null if no annotation with the given name exists for the given element. | |
GetDirectValueAnnotations | Gets annotations associated with an element. | |
SetAnnotationValue | Sets an annotation value for an EDM element. If the value is null, no annotation is added and an existing annotation with the same name is removed. | |
SetAnnotationValues | Sets a set of annotation values. If a supplied value is null, no annotation is added and an existing annotation with the same name is removed. |
Top