DbFunctionBuilder.HasAnnotation(String, Object) 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.
Adds or updates an annotation on the database function. If an annotation with the key specified in
annotation
already exists, its value will be updated.
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.DbFunctionBuilder HasAnnotation (string annotation, object? value);
abstract member HasAnnotation : string * obj -> Microsoft.EntityFrameworkCore.Metadata.Builders.DbFunctionBuilder
override this.HasAnnotation : string * obj -> Microsoft.EntityFrameworkCore.Metadata.Builders.DbFunctionBuilder
Public Overridable Function HasAnnotation (annotation As String, value As Object) As DbFunctionBuilder
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
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.
Entity Framework