Share via


ConventionTypeConfiguration<T>.HasTableAnnotation Method

Definition

Sets an annotation in the model for the table to which this entity is mapped. The annotation value can later be used when processing the table such as when creating migrations.

public System.Data.Entity.ModelConfiguration.Configuration.ConventionTypeConfiguration<T> HasTableAnnotation (string name, object value);
member this.HasTableAnnotation : string * obj -> System.Data.Entity.ModelConfiguration.Configuration.ConventionTypeConfiguration<'T (requires 'T : null)>
Public Function HasTableAnnotation (name As String, value As Object) As ConventionTypeConfiguration(Of T)

Parameters

name
String

The annotation name, which must be a valid C#/EDM identifier.

value
Object

The annotation value, which may be a string or some other type that can be serialized with an IMetadataAnnotationSerializer

Returns

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

Remarks

It will likely be necessary to register a IMetadataAnnotationSerializer if the type of the annotation value is anything other than a string. Calling this method will have no effect if the annotation with the given name has already been configured.

Applies to