ConventionTypeConfiguration.HasTableAnnotation(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.
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 HasTableAnnotation (string name, object value);
member this.HasTableAnnotation : string * obj -> System.Data.Entity.ModelConfiguration.Configuration.ConventionTypeConfiguration
Public Function HasTableAnnotation (name As String, value As Object) As ConventionTypeConfiguration
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
Entity Framework