Compartir a través de


RelationalPropertyBuilderExtensions.IsFixedLength Método

Definición

Sobrecargas

IsFixedLength(PropertyBuilder, Boolean)

Configura la propiedad como capaz de almacenar solo datos de longitud fija, como cadenas.

IsFixedLength(IConventionPropertyBuilder, Nullable<Boolean>, Boolean)

Configura la propiedad como capaz de almacenar solo datos de longitud fija, como cadenas.

IsFixedLength<TProperty>(PropertyBuilder<TProperty>, Boolean)

Configura la propiedad como capaz de almacenar solo datos de longitud fija, como cadenas.

IsFixedLength(PropertyBuilder, Boolean)

Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs

Configura la propiedad como capaz de almacenar solo datos de longitud fija, como cadenas.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder IsFixedLength (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, bool fixedLength = true);
static member IsFixedLength : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function IsFixedLength (propertyBuilder As PropertyBuilder, Optional fixedLength As Boolean = true) As PropertyBuilder

Parámetros

propertyBuilder
PropertyBuilder

Generador de la propiedad que se va a configurar.

fixedLength
Boolean

Valor que indica si la propiedad está restringida a valores de longitud fija.

Devoluciones

La misma instancia del generador para que se puedan encadenar varias llamadas de configuración.

Comentarios

Consulte Modelado de tipos de entidad y relaciones para obtener más información y ejemplos.

Se aplica a

IsFixedLength(IConventionPropertyBuilder, Nullable<Boolean>, Boolean)

Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs

Configura la propiedad como capaz de almacenar solo datos de longitud fija, como cadenas.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder IsFixedLength (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, bool? fixedLength, bool fromDataAnnotation = false);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder? IsFixedLength (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, bool? fixedLength, bool fromDataAnnotation = false);
static member IsFixedLength : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder * Nullable<bool> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder
<Extension()>
Public Function IsFixedLength (propertyBuilder As IConventionPropertyBuilder, fixedLength As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As IConventionPropertyBuilder

Parámetros

propertyBuilder
IConventionPropertyBuilder

Generador de la propiedad que se va a configurar.

fixedLength
Nullable<Boolean>

Valor que indica si la propiedad está restringida a valores de longitud fija.

fromDataAnnotation
Boolean

Indica si la configuración se especificó mediante una anotación de datos.

Devoluciones

La misma instancia del generador si se aplicó la configuración; de lo contrario, null .

Comentarios

Consulte Modelado de tipos de entidad y relaciones para obtener más información y ejemplos.

Se aplica a

IsFixedLength<TProperty>(PropertyBuilder<TProperty>, Boolean)

Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs
Source:
RelationalPropertyBuilderExtensions.cs

Configura la propiedad como capaz de almacenar solo datos de longitud fija, como cadenas.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> IsFixedLength<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, bool fixedLength = true);
static member IsFixedLength : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function IsFixedLength(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), Optional fixedLength As Boolean = true) As PropertyBuilder(Of TProperty)

Parámetros de tipo

TProperty

El tipo de la propiedad que se va a configurar.

Parámetros

propertyBuilder
PropertyBuilder<TProperty>

Generador de la propiedad que se va a configurar.

fixedLength
Boolean

Valor que indica si la propiedad está restringida a valores de longitud fija.

Devoluciones

La misma instancia del generador para que se puedan encadenar varias llamadas de configuración.

Comentarios

Consulte Modelado de tipos de entidad y relaciones para obtener más información y ejemplos.

Se aplica a