SqlServerDbSetExtensions.TemporalAll<TEntity> 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在指定的 DbSet 上套用時態 'All' 作業,這會傳回實體的所有歷程記錄版本及其目前狀態。
public static System.Linq.IQueryable<TEntity> TemporalAll<TEntity> (this Microsoft.EntityFrameworkCore.DbSet<TEntity> source) where TEntity : class;
static member TemporalAll : Microsoft.EntityFrameworkCore.DbSet<'Entity (requires 'Entity : null)> -> System.Linq.IQueryable<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function TemporalAll(Of TEntity As Class) (source As DbSet(Of TEntity)) As IQueryable(Of TEntity)
類型參數
- TEntity
參數
- source
- DbSet<TEntity>
套用時態運算的來源 DbSet。
傳回
IQueryable<TEntity>
, IQueryable<T> 表示實體及其歷程記錄版本。
備註
時態查詢一律設定為 'NoTracking'。
如需詳細資訊和範例,請參閱搭配 EF Core 使用SQL Server時態表。