SqlServerDbSetExtensions.TemporalFromTo<TEntity> 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在指定的 DbSet 上套用時態 'FromTo' 作業,它只會傳回資料庫中在兩個時間點之間的元素。
public static System.Linq.IQueryable<TEntity> TemporalFromTo<TEntity> (this Microsoft.EntityFrameworkCore.DbSet<TEntity> source, DateTime utcFrom, DateTime utcTo) where TEntity : class;
static member TemporalFromTo : Microsoft.EntityFrameworkCore.DbSet<'Entity (requires 'Entity : null)> * DateTime * DateTime -> System.Linq.IQueryable<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function TemporalFromTo(Of TEntity As Class) (source As DbSet(Of TEntity), utcFrom As DateTime, utcTo As DateTime) As IQueryable(Of TEntity)
類型參數
- TEntity
參數
- source
- DbSet<TEntity>
套用時態運算的來源 DbSet。
- utcFrom
- DateTime
時間點,表示應該傳回結果的期間開始。
- utcTo
- DateTime
時間點,表示應該傳回結果的期間結束時間點。
傳回
IQueryable<TEntity>
, IQueryable<T> 表示出現在指定時間範圍內的實體。
備註
在起點建立的元素,以及結束點移除的專案不會包含在結果中。
在時間範圍記憶體在的所有實體版本都會傳回,因此可以傳回具有相同索引鍵的多個實體。
時態資訊會以 UTC 格式儲存在資料庫上,因此本機時間中的任何 DateTime 引數都可能會導致非預期的結果。
時態查詢一律設定為 'NoTracking'。
如需詳細資訊和範例,請參閱搭配 EF Core 使用SQL Server時態表。