AnnotatableBase.SetRuntimeAnnotation 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.
Overloads
SetRuntimeAnnotation(String, Annotation, Annotation) |
Sets the runtime annotation stored under the given key. Overwrites the existing annotation if an annotation with the specified name already exists. |
SetRuntimeAnnotation(String, Object) |
Sets the runtime annotation stored under the given key. Overwrites the existing annotation if an annotation with the specified name already exists. |
SetRuntimeAnnotation(String, Annotation, Annotation)
Sets the runtime annotation stored under the given key. Overwrites the existing annotation if an annotation with the specified name already exists.
protected virtual Microsoft.EntityFrameworkCore.Infrastructure.Annotation SetRuntimeAnnotation (string name, Microsoft.EntityFrameworkCore.Infrastructure.Annotation annotation, Microsoft.EntityFrameworkCore.Infrastructure.Annotation? oldAnnotation);
abstract member SetRuntimeAnnotation : string * Microsoft.EntityFrameworkCore.Infrastructure.Annotation * Microsoft.EntityFrameworkCore.Infrastructure.Annotation -> Microsoft.EntityFrameworkCore.Infrastructure.Annotation
override this.SetRuntimeAnnotation : string * Microsoft.EntityFrameworkCore.Infrastructure.Annotation * Microsoft.EntityFrameworkCore.Infrastructure.Annotation -> Microsoft.EntityFrameworkCore.Infrastructure.Annotation
Protected Overridable Function SetRuntimeAnnotation (name As String, annotation As Annotation, oldAnnotation As Annotation) As Annotation
Parameters
- name
- String
The key of the annotation to be added.
- annotation
- Annotation
The annotation to be set.
- oldAnnotation
- Annotation
The annotation being replaced.
Returns
The annotation that was set.
Applies to
SetRuntimeAnnotation(String, Object)
Sets the runtime annotation stored under the given key. Overwrites the existing annotation if an annotation with the specified name already exists.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.Annotation SetRuntimeAnnotation (string name, object? value);
abstract member SetRuntimeAnnotation : string * obj -> Microsoft.EntityFrameworkCore.Infrastructure.Annotation
override this.SetRuntimeAnnotation : string * obj -> Microsoft.EntityFrameworkCore.Infrastructure.Annotation
Public Overridable Function SetRuntimeAnnotation (name As String, value As Object) As Annotation
Parameters
- name
- String
The key of the annotation to be added.
- value
- Object
The value to be stored in the annotation.
Returns
Applies to
Entity Framework