Class PrimitiveCollectionBuilder<TProperty>
- Namespace
- Microsoft.EntityFrameworkCore.Metadata.Builders
- Assembly
- Microsoft.EntityFrameworkCore.dll
Provides a simple API for configuring a IMutableProperty.
public class PrimitiveCollectionBuilder<TProperty> : PrimitiveCollectionBuilder, IInfrastructure<IConventionPropertyBuilder>
Type Parameters
TProperty
- Inheritance
-
PrimitiveCollectionBuilder<TProperty>
- Implements
- Inherited Members
- Extension Methods
Remarks
Instances of this class are returned from methods when using the ModelBuilder API and it is not designed to be directly constructed in your application code.
See Modeling entity types and relationships for more information and examples.
Constructors
PrimitiveCollectionBuilder(IMutableProperty)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
[EntityFrameworkInternal]
public PrimitiveCollectionBuilder(IMutableProperty property)
Parameters
property
IMutableProperty
Methods
ElementType(Action<ElementTypeBuilder>)
Configures the elements of this collection.
public virtual PrimitiveCollectionBuilder<TProperty> ElementType(Action<ElementTypeBuilder> builderAction)
Parameters
builderAction
Action<ElementTypeBuilder>An action that performs configuration of the collection element type.
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
HasAnnotation(string, object?)
Adds or updates an annotation on the property. If an annotation with the key specified in
annotation
already exists its value will be updated.
public virtual PrimitiveCollectionBuilder<TProperty> HasAnnotation(string annotation, object? value)
Parameters
annotation
stringThe key of the annotation to be added or updated.
value
objectThe value to be stored in the annotation.
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
HasField(string)
Sets the backing field to use for this property.
public virtual PrimitiveCollectionBuilder<TProperty> HasField(string fieldName)
Parameters
fieldName
stringThe field name.
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
Remarks
Backing fields are normally found by convention. This method is useful for setting backing fields explicitly in cases where the correct field is not found by convention.
By default, the backing field, if one is found or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. This can be changed by calling UsePropertyAccessMode(PropertyAccessMode).
See Backing fields for more information and examples.
HasMaxLength(int)
Configures the maximum length of data that can be stored in this property. Maximum length can only be set on array properties (including string properties).
public virtual PrimitiveCollectionBuilder<TProperty> HasMaxLength(int maxLength)
Parameters
maxLength
intThe maximum length of data allowed in the property. A value of
-1
indicates that the property has no maximum length.
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
HasSentinel(object?)
Configures the value that will be used to determine if the property has been set or not. If the property is set to the sentinel value, then it is considered not set. By default, the sentinel value is the CLR default value for the type of the property.
public virtual PrimitiveCollectionBuilder<TProperty> HasSentinel(object? sentinel)
Parameters
sentinel
objectThe sentinel value.
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance if the configuration was applied, null otherwise.
HasValueGenerator(Type?)
Configures the ValueGenerator that will generate values for this property.
public virtual PrimitiveCollectionBuilder<TProperty> HasValueGenerator(Type? valueGeneratorType)
Parameters
valueGeneratorType
TypeA type that inherits from ValueGenerator.
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
Remarks
Values are generated when the entity is added to the context using, for example,
Add<TEntity>(TEntity). Values are generated only when the property is assigned
the CLR default value (null for string
, 0
for int
,
Guid.Empty
for Guid
, etc.).
A single instance of this type will be created and used to generate values for this property in all instances of the entity type. The type must be instantiable and have a parameterless constructor.
This method is intended for use with custom value generation. Value generation for common cases is usually handled automatically by the database provider.
Setting null does not disable value generation for this property, it just clears any generator explicitly configured for this property. The database provider may still have a value generator for the property type.
HasValueGeneratorFactory(Type?)
Configures the ValueGeneratorFactory for creating a ValueGenerator to use to generate values for this property.
public virtual PrimitiveCollectionBuilder<TProperty> HasValueGeneratorFactory(Type? valueGeneratorFactoryType)
Parameters
valueGeneratorFactoryType
TypeA type that inherits from ValueGeneratorFactory.
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
Remarks
Values are generated when the entity is added to the context using, for example,
Add<TEntity>(TEntity). Values are generated only when the property is assigned
the CLR default value (null for string
, 0
for int
,
Guid.Empty
for Guid
, etc.).
A single instance of this type will be created and used to generate values for this property in all instances of the entity type. The type must be instantiable and have a parameterless constructor.
This method is intended for use with custom value generation. Value generation for common cases is usually handled automatically by the database provider.
Setting null does not disable value generation for this property, it just clears any generator explicitly configured for this property. The database provider may still have a value generator for the property type.
HasValueGeneratorFactory<TFactory>()
Configures the ValueGeneratorFactory for creating a ValueGenerator to use to generate values for this property.
public virtual PrimitiveCollectionBuilder<TProperty> HasValueGeneratorFactory<TFactory>() where TFactory : ValueGeneratorFactory
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
Type Parameters
TFactory
A type that inherits from ValueGeneratorFactory.
Remarks
Values are generated when the entity is added to the context using, for example,
Add<TEntity>(TEntity). Values are generated only when the property is assigned
the CLR default value (null for string
, 0
for int
,
Guid.Empty
for Guid
, etc.).
A single instance of this type will be created and used to generate values for this property in all instances of the entity type. The type must be instantiable and have a parameterless constructor.
This method is intended for use with custom value generation. Value generation for common cases is usually handled automatically by the database provider.
Setting null does not disable value generation for this property, it just clears any generator explicitly configured for this property. The database provider may still have a value generator for the property type.
HasValueGenerator<TGenerator>()
Configures the ValueGenerator that will generate values for this property.
public virtual PrimitiveCollectionBuilder<TProperty> HasValueGenerator<TGenerator>() where TGenerator : ValueGenerator
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
Type Parameters
TGenerator
A type that inherits from ValueGenerator.
Remarks
Values are generated when the entity is added to the context using, for example,
Add<TEntity>(TEntity). Values are generated only when the property is assigned
the CLR default value (null for string
, 0
for int
,
Guid.Empty
for Guid
, etc.).
A single instance of this type will be created and used to generate values for this property in all instances of the entity type. The type must be instantiable and have a parameterless constructor.
This method is intended for use with custom value generation. Value generation for common cases is usually handled automatically by the database provider.
IsConcurrencyToken(bool)
Configures whether this property should be used as a concurrency token. When a property is configured as a concurrency token the value in the database will be checked when an instance of this entity type is updated or deleted during SaveChanges() to ensure it has not changed since the instance was retrieved from the database. If it has changed, an exception will be thrown and the changes will not be applied to the database.
public virtual PrimitiveCollectionBuilder<TProperty> IsConcurrencyToken(bool concurrencyToken = true)
Parameters
concurrencyToken
boolA value indicating whether this property is a concurrency token.
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
IsRequired(bool)
Configures whether this property must have a value assigned or whether null is a valid value. A property can only be configured as non-required if it is based on a CLR type that can be assigned null.
public virtual PrimitiveCollectionBuilder<TProperty> IsRequired(bool required = true)
Parameters
required
boolA value indicating whether the property is required.
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
IsUnicode(bool)
Configures the property as capable of persisting unicode characters. Can only be set on string properties.
public virtual PrimitiveCollectionBuilder<TProperty> IsUnicode(bool unicode = true)
Parameters
unicode
boolA value indicating whether the property can contain unicode characters.
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
UsePropertyAccessMode(PropertyAccessMode)
Sets the PropertyAccessMode to use for this property.
public virtual PrimitiveCollectionBuilder<TProperty> UsePropertyAccessMode(PropertyAccessMode propertyAccessMode)
Parameters
propertyAccessMode
PropertyAccessModeThe PropertyAccessMode to use for this property.
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
Remarks
By default, the backing field, if one is found by convention or has been specified, is used when new objects are constructed, typically when entities are queried from the database. Properties are used for all other accesses. Calling this method will change that behavior for this property as described in the PropertyAccessMode enum.
Calling this method overrides for this property any access mode that was set on the entity type or model.
ValueGeneratedNever()
Configures a property to never have a value generated when an instance of this entity type is saved.
public virtual PrimitiveCollectionBuilder<TProperty> ValueGeneratedNever()
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
Remarks
Note that temporary values may still be generated for use internally before a new entity is saved.
ValueGeneratedOnAdd()
Configures a property to have a value generated only when saving a new entity, unless a non-null, non-temporary value has been set, in which case the set value will be saved instead. The value may be generated by a client-side value generator or may be generated by the database as part of saving the entity.
public virtual PrimitiveCollectionBuilder<TProperty> ValueGeneratedOnAdd()
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
ValueGeneratedOnAddOrUpdate()
Configures a property to have a value generated when saving a new or existing entity.
public virtual PrimitiveCollectionBuilder<TProperty> ValueGeneratedOnAddOrUpdate()
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
ValueGeneratedOnUpdate()
Configures a property to have a value generated when saving an existing entity.
public virtual PrimitiveCollectionBuilder<TProperty> ValueGeneratedOnUpdate()
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.
ValueGeneratedOnUpdateSometimes()
Configures a property to have a value generated under certain conditions when saving an existing entity.
public virtual PrimitiveCollectionBuilder<TProperty> ValueGeneratedOnUpdateSometimes()
Returns
- PrimitiveCollectionBuilder<TProperty>
The same builder instance so that multiple configuration calls can be chained.