IConventionPropertyBaseBuilder Interface
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.
Provides a simple API surface for configuring an IConventionPropertyBase from conventions.
This interface is typically used by database providers (and other extensions). It is generally not used in application code.
public interface IConventionPropertyBaseBuilder : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionAnnotatableBuilder
type IConventionPropertyBaseBuilder = interface
interface IConventionAnnotatableBuilder
Public Interface IConventionPropertyBaseBuilder
Implements IConventionAnnotatableBuilder
- Derived
- Implements
Remarks
See Model building conventions for more information and examples.
Properties
Metadata |
Gets the property-like object being configured. |
ModelBuilder |
Gets the model builder. (Inherited from IConventionAnnotatableBuilder) |
Methods
CanRemoveAnnotation(String, Boolean) |
Returns a value indicating whether an annotation with the given name can be removed using this configuration source. (Inherited from IConventionAnnotatableBuilder) |
CanSetAnnotation(String, Object, Boolean) |
Returns a value indicating whether an annotation with the given name and value can be set from this configuration source. (Inherited from IConventionAnnotatableBuilder) |
CanSetField(FieldInfo, Boolean) |
Returns a value indicating whether the backing field can be set for this property-like object from the current configuration source. |
CanSetField(String, Boolean) |
Returns a value indicating whether the backing field can be set for this property-like object from the current configuration source. |
CanSetPropertyAccessMode(Nullable<PropertyAccessMode>, Boolean) |
Returns a value indicating whether the PropertyAccessMode can be set for this property-like object from the current configuration source. |
HasAnnotation(String, Object, Boolean) |
Sets the annotation stored under the given name. Overwrites the existing annotation if an annotation with the specified name already exists with same or lower ConfigurationSource. (Inherited from IConventionAnnotatableBuilder) |
HasField(FieldInfo, Boolean) |
Sets the backing field to use for this property-like object. |
HasField(String, Boolean) |
Sets the backing field to use for this property-like object. |
HasNoAnnotation(String, Boolean) |
Removes the annotation with the given name from this object. (Inherited from IConventionAnnotatableBuilder) |
HasNonNullAnnotation(String, Object, Boolean) |
Sets the annotation stored under the given name. Overwrites the existing annotation if an
annotation with the specified name already exists with same or lower ConfigurationSource.
Removes the annotation if |
RemoveAnnotation(String, Boolean) |
Obsolete.
Removes the annotation with the given name from this object. (Inherited from IConventionAnnotatableBuilder) |
SetOrRemoveAnnotation(String, Object, Boolean) |
Obsolete.
Sets or removes the annotation stored under the given name. (Inherited from IConventionAnnotatableBuilder) |
UsePropertyAccessMode(Nullable<PropertyAccessMode>, Boolean) |
Sets the PropertyAccessMode to use for this property-like object. |
Applies to
Entity Framework