Share via


ElementTypeBuilder.HasMaxLength(Int32) Method

Definition

Configures the maximum length of data that can be stored in elements of the collection.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.ElementTypeBuilder HasMaxLength (int maxLength);
abstract member HasMaxLength : int -> Microsoft.EntityFrameworkCore.Metadata.Builders.ElementTypeBuilder
override this.HasMaxLength : int -> Microsoft.EntityFrameworkCore.Metadata.Builders.ElementTypeBuilder
Public Overridable Function HasMaxLength (maxLength As Integer) As ElementTypeBuilder

Parameters

maxLength
Int32

The maximum length of data allowed in elements of the collection. A value of -1 indicates that elements of the collection have no maximum length.

Returns

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

Applies to