Compartir a través de


RelationalPropertyExtensions.TryGetDefaultValue Método

Definición

Sobrecargas

TryGetDefaultValue(IReadOnlyProperty, Object)

Devuelve el objeto que se usa como valor predeterminado para la columna a la que se asigna esta propiedad.

TryGetDefaultValue(IReadOnlyProperty, StoreObjectIdentifier, Object)

Devuelve el objeto que se usa como valor predeterminado para la columna a la que se asigna esta propiedad.

TryGetDefaultValue(IReadOnlyProperty, Object)

Devuelve el objeto que se usa como valor predeterminado para la columna a la que se asigna esta propiedad.

public static bool TryGetDefaultValue (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property, out object? defaultValue);
static member TryGetDefaultValue : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty * obj -> bool
<Extension()>
Public Function TryGetDefaultValue (property As IReadOnlyProperty, ByRef defaultValue As Object) As Boolean

Parámetros

property
IReadOnlyProperty

Propiedad.

defaultValue
Object

Valor predeterminado o CLR predeterminado si no se ha establecido ningún valor predeterminado explícito.

Devoluciones

true si se ha establecido explícitamente un valor predeterminado; false Lo contrario.

Se aplica a

TryGetDefaultValue(IReadOnlyProperty, StoreObjectIdentifier, Object)

Devuelve el objeto que se usa como valor predeterminado para la columna a la que se asigna esta propiedad.

public static bool TryGetDefaultValue (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject, out object? defaultValue);
static member TryGetDefaultValue : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty * StoreObjectIdentifier * obj -> bool
<Extension()>
Public Function TryGetDefaultValue (property As IReadOnlyProperty, ByRef storeObject As StoreObjectIdentifier, ByRef defaultValue As Object) As Boolean

Parámetros

property
IReadOnlyProperty

Propiedad.

storeObject
StoreObjectIdentifier

Identificador del objeto de almacén similar a la tabla que contiene la columna.

defaultValue
Object

Valor predeterminado o CLR predeterminado si no se ha establecido ningún valor predeterminado explícito.

Devoluciones

true si se ha establecido explícitamente un valor predeterminado; false Lo contrario.

Se aplica a