PropertiesConfigurationBuilder.HaveAnnotation(String, Object) Method

Definition

Adds or updates an annotation on the property.

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

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