ModelBuilder.HasAnnotation(String, Object) Method

Definition

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

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

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 ModelBuilder instance so that multiple configuration calls can be chained.

Applies to