ReferenceOwnershipBuilder.HasEntityTypeAnnotation(String, Object) Method

Definition

Adds or updates an annotation on the owned entity type. If an annotation with the key specified in annotation already exists its value will be updated.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.ReferenceOwnershipBuilder HasEntityTypeAnnotation (string annotation, object value);
abstract member HasEntityTypeAnnotation : string * obj -> Microsoft.EntityFrameworkCore.Metadata.Builders.ReferenceOwnershipBuilder
override this.HasEntityTypeAnnotation : string * obj -> Microsoft.EntityFrameworkCore.Metadata.Builders.ReferenceOwnershipBuilder
Public Overridable Function HasEntityTypeAnnotation (annotation As String, value As Object) As ReferenceOwnershipBuilder

Parameters

annotation
String

The key of the annotation to be added or updated.

value
Object

The value to be stored in the annotation.

Returns

The same builder instance so that multiple configuration calls can be chained.

Applies to