Sdílet prostřednictvím


SqlServerTableBuilderExtensions.IsTemporal Metoda

Definice

Přetížení

IsTemporal(OwnedNavigationTableBuilder, Action<OwnedNavigationTemporalTableBuilder>)

Nakonfiguruje tabulku jako dočasnou.

IsTemporal(OwnedNavigationTableBuilder, Boolean)

Nakonfiguruje tabulku jako dočasnou.

IsTemporal(TableBuilder, Action<TemporalTableBuilder>)

Nakonfiguruje tabulku jako dočasnou.

IsTemporal(TableBuilder, Boolean)

Nakonfiguruje tabulku jako dočasnou.

IsTemporal<TEntity>(TableBuilder<TEntity>, Boolean)

Nakonfiguruje tabulku jako dočasnou.

IsTemporal<TEntity>(TableBuilder<TEntity>, Action<TemporalTableBuilder<TEntity>>)

Nakonfiguruje tabulku jako dočasnou.

IsTemporal<TOwnerEntity,TDependentEntity>(OwnedNavigationTableBuilder<TOwnerEntity, TDependentEntity>, Action<OwnedNavigationTemporalTableBuilder<TOwnerEntity, TDependentEntity>>)

Nakonfiguruje tabulku jako dočasnou.

IsTemporal<TOwnerEntity,TDependentEntity>(OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity>, Boolean)

Nakonfiguruje tabulku jako dočasnou.

IsTemporal(OwnedNavigationTableBuilder, Action<OwnedNavigationTemporalTableBuilder>)

Nakonfiguruje tabulku jako dočasnou.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder IsTemporal (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder tableBuilder, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTemporalTableBuilder> buildAction);
static member IsTemporal : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTemporalTableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder
<Extension()>
Public Function IsTemporal (tableBuilder As OwnedNavigationTableBuilder, buildAction As Action(Of OwnedNavigationTemporalTableBuilder)) As OwnedNavigationTableBuilder

Parametry

tableBuilder
OwnedNavigationTableBuilder

Tvůrce konfigurované tabulky.

buildAction
Action<OwnedNavigationTemporalTableBuilder>

Akce, která provádí konfiguraci dočasné tabulky.

Návraty

Stejná instance tvůrce, aby bylo možné zřetězených více volání.

Poznámky

Další informace najdete v tématu Použití SQL Server dočasných tabulek s EF Core.

Platí pro

IsTemporal(OwnedNavigationTableBuilder, Boolean)

Nakonfiguruje tabulku jako dočasnou.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTemporalTableBuilder IsTemporal (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder tableBuilder, bool temporal = true);
static member IsTemporal : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTemporalTableBuilder
<Extension()>
Public Function IsTemporal (tableBuilder As OwnedNavigationTableBuilder, Optional temporal As Boolean = true) As OwnedNavigationTemporalTableBuilder

Parametry

tableBuilder
OwnedNavigationTableBuilder

Tvůrce konfigurované tabulky.

temporal
Boolean

Hodnota označující, zda je tabulka dočasná.

Návraty

Objekt, který lze použít ke konfiguraci dočasné tabulky.

Poznámky

Další informace najdete v tématu Použití SQL Server dočasných tabulek s EF Core.

Platí pro

IsTemporal(TableBuilder, Action<TemporalTableBuilder>)

Nakonfiguruje tabulku jako dočasnou.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder IsTemporal (this Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder tableBuilder, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TemporalTableBuilder> buildAction);
static member IsTemporal : Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TemporalTableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder
<Extension()>
Public Function IsTemporal (tableBuilder As TableBuilder, buildAction As Action(Of TemporalTableBuilder)) As TableBuilder

Parametry

tableBuilder
TableBuilder

Tvůrce konfigurované tabulky.

buildAction
Action<TemporalTableBuilder>

Akce, která provádí konfiguraci dočasné tabulky.

Návraty

Stejná instance tvůrce, aby bylo možné zřetězených více volání.

Poznámky

Další informace a příklady najdete v tématu Použití SQL Server dočasných tabulek s EF Core.

Platí pro

IsTemporal(TableBuilder, Boolean)

Nakonfiguruje tabulku jako dočasnou.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.TemporalTableBuilder IsTemporal (this Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder tableBuilder, bool temporal = true);
static member IsTemporal : Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.TemporalTableBuilder
<Extension()>
Public Function IsTemporal (tableBuilder As TableBuilder, Optional temporal As Boolean = true) As TemporalTableBuilder

Parametry

tableBuilder
TableBuilder

Tvůrce konfigurované tabulky.

temporal
Boolean

Hodnota označující, zda je tabulka dočasná.

Návraty

Objekt, který lze použít ke konfiguraci dočasné tabulky.

Poznámky

Další informace a příklady najdete v tématu Použití SQL Server dočasných tabulek s EF Core.

Platí pro

IsTemporal<TEntity>(TableBuilder<TEntity>, Boolean)

Nakonfiguruje tabulku jako dočasnou.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.TemporalTableBuilder<TEntity> IsTemporal<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<TEntity> tableBuilder, bool temporal = true) where TEntity : class;
static member IsTemporal : Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<'Entity (requires 'Entity : null)> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.TemporalTableBuilder<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function IsTemporal(Of TEntity As Class) (tableBuilder As TableBuilder(Of TEntity), Optional temporal As Boolean = true) As TemporalTableBuilder(Of TEntity)

Parametry typu

TEntity

Konfigurovaný typ entity.

Parametry

tableBuilder
TableBuilder<TEntity>

Tvůrce konfigurované tabulky.

temporal
Boolean

Hodnota označující, zda je tabulka dočasná.

Návraty

Objekt, který lze použít ke konfiguraci dočasné tabulky.

Poznámky

Další informace a příklady najdete v tématu Použití SQL Server dočasných tabulek s EF Core.

Platí pro

IsTemporal<TEntity>(TableBuilder<TEntity>, Action<TemporalTableBuilder<TEntity>>)

Nakonfiguruje tabulku jako dočasnou.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<TEntity> IsTemporal<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<TEntity> tableBuilder, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TemporalTableBuilder<TEntity>> buildAction) where TEntity : class;
static member IsTemporal : Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<'Entity (requires 'Entity : null)> * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TemporalTableBuilder<'Entity>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function IsTemporal(Of TEntity As Class) (tableBuilder As TableBuilder(Of TEntity), buildAction As Action(Of TemporalTableBuilder(Of TEntity))) As TableBuilder(Of TEntity)

Parametry typu

TEntity

Konfigurovaný typ entity.

Parametry

tableBuilder
TableBuilder<TEntity>

Tvůrce konfigurované tabulky.

buildAction
Action<TemporalTableBuilder<TEntity>>

Akce, která provádí konfiguraci dočasné tabulky.

Návraty

Stejná instance tvůrce, aby bylo možné zřetězených více volání.

Poznámky

Další informace a příklady najdete v tématu Použití SQL Server dočasných tabulek s EF Core.

Platí pro

IsTemporal<TOwnerEntity,TDependentEntity>(OwnedNavigationTableBuilder<TOwnerEntity, TDependentEntity>, Action<OwnedNavigationTemporalTableBuilder<TOwnerEntity, TDependentEntity>>)

Nakonfiguruje tabulku jako dočasnou.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity> IsTemporal<TOwnerEntity,TDependentEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity> tableBuilder, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTemporalTableBuilder<TOwnerEntity,TDependentEntity>> buildAction) where TOwnerEntity : class where TDependentEntity : class;
static member IsTemporal : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTemporalTableBuilder<'OwnerEntity, 'DependentEntity>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> (requires 'OwnerEntity : null and 'DependentEntity : null)
<Extension()>
Public Function IsTemporal(Of TOwnerEntity As Class, TDependentEntity As Class) (tableBuilder As OwnedNavigationTableBuilder(Of TOwnerEntity, TDependentEntity), buildAction As Action(Of OwnedNavigationTemporalTableBuilder(Of TOwnerEntity, TDependentEntity))) As OwnedNavigationTableBuilder(Of TOwnerEntity, TDependentEntity)

Parametry typu

TOwnerEntity

Typ entity, která vlastní relaci.

TDependentEntity

Závislý typ entity relace.

Parametry

tableBuilder
OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity>

Tvůrce konfigurované tabulky.

buildAction
Action<OwnedNavigationTemporalTableBuilder<TOwnerEntity,TDependentEntity>>

Akce, která provádí konfiguraci dočasné tabulky.

Návraty

Stejná instance tvůrce, aby bylo možné zřetězených více volání.

Poznámky

Další informace najdete v tématu Použití SQL Server dočasných tabulek s EF Core.

Platí pro

IsTemporal<TOwnerEntity,TDependentEntity>(OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity>, Boolean)

Nakonfiguruje tabulku jako dočasnou.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTemporalTableBuilder<TOwnerEntity,TDependentEntity> IsTemporal<TOwnerEntity,TDependentEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity> tableBuilder, bool temporal = true) where TOwnerEntity : class where TDependentEntity : class;
static member IsTemporal : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTemporalTableBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> (requires 'OwnerEntity : null and 'DependentEntity : null)
<Extension()>
Public Function IsTemporal(Of TOwnerEntity As Class, TDependentEntity As Class) (tableBuilder As OwnedNavigationTableBuilder(Of TOwnerEntity, TDependentEntity), Optional temporal As Boolean = true) As OwnedNavigationTemporalTableBuilder(Of TOwnerEntity, TDependentEntity)

Parametry typu

TOwnerEntity

Typ entity, která vlastní relaci.

TDependentEntity

Závislý typ entity relace.

Parametry

tableBuilder
OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity>

Tvůrce konfigurované tabulky.

temporal
Boolean

Hodnota označující, zda je tabulka dočasná.

Návraty

Objekt, který lze použít ke konfiguraci dočasné tabulky.

Poznámky

Další informace najdete v tématu Použití SQL Server dočasných tabulek s EF Core.

Platí pro