RelationalPropertyExtensions.GetIsStored Method

Definition

Overloads

GetIsStored(IProperty)

Gets whether the value of the computed column this property is mapped to is stored in the database, or calculated when it is read.

GetIsStored(IReadOnlyProperty)

Gets whether the value of the computed column this property is mapped to is stored in the database, or calculated when it is read.

GetIsStored(IProperty, StoreObjectIdentifier)

Gets whether the value of the computed column this property is mapped to is stored in the database, or calculated when it is read.

GetIsStored(IReadOnlyProperty, StoreObjectIdentifier)

Gets whether the value of the computed column this property is mapped to is stored in the database, or calculated when it is read.

GetIsStored(IProperty)

Gets whether the value of the computed column this property is mapped to is stored in the database, or calculated when it is read.

public static bool? GetIsStored (this Microsoft.EntityFrameworkCore.Metadata.IProperty property);
static member GetIsStored : Microsoft.EntityFrameworkCore.Metadata.IProperty -> Nullable<bool>
<Extension()>
Public Function GetIsStored (property As IProperty) As Nullable(Of Boolean)

Parameters

property
IProperty

The property.

Returns

Whether the value of the computed column this property is mapped to is stored in the database, or calculated when it is read.

Applies to

GetIsStored(IReadOnlyProperty)

Gets whether the value of the computed column this property is mapped to is stored in the database, or calculated when it is read.

public static bool? GetIsStored (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property);
static member GetIsStored : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty -> Nullable<bool>
<Extension()>
Public Function GetIsStored (property As IReadOnlyProperty) As Nullable(Of Boolean)

Parameters

property
IReadOnlyProperty

The property.

Returns

Whether the value of the computed column this property is mapped to is stored in the database, or calculated when it is read.

Applies to

GetIsStored(IProperty, StoreObjectIdentifier)

Gets whether the value of the computed column this property is mapped to is stored in the database, or calculated when it is read.

public static bool? GetIsStored (this Microsoft.EntityFrameworkCore.Metadata.IProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetIsStored : Microsoft.EntityFrameworkCore.Metadata.IProperty * StoreObjectIdentifier -> Nullable<bool>
<Extension()>
Public Function GetIsStored (property As IProperty, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of Boolean)

Parameters

property
IProperty

The property.

storeObject
StoreObjectIdentifier

The identifier of the table-like store object containing the column.

Returns

Whether the value of the computed column this property is mapped to is stored in the database, or calculated when it is read.

Applies to

GetIsStored(IReadOnlyProperty, StoreObjectIdentifier)

Gets whether the value of the computed column this property is mapped to is stored in the database, or calculated when it is read.

public static bool? GetIsStored (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetIsStored : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty * StoreObjectIdentifier -> Nullable<bool>
<Extension()>
Public Function GetIsStored (property As IReadOnlyProperty, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of Boolean)

Parameters

property
IReadOnlyProperty

The property.

storeObject
StoreObjectIdentifier

The identifier of the table-like store object containing the column.

Returns

Whether the value of the computed column this property is mapped to is stored in the database, or calculated when it is read.

Applies to