You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Temporal Tables API feedback - adding note to temporal methods that database stores time in UTC so local time may lead to unexpected results. Also indicating that in DateTime argument names for those methods.
@@ -21,15 +19,18 @@ public static class SqlServerDbSetExtensions
21
19
/// Applies temporal 'AsOf' operation on the given DbSet, which only returns elements that were present in the database at a given point in time.
22
20
/// </para>
23
21
/// <para>
22
+
/// Temporal information is stored in UTC format on the database so any <see cref="DateTime" /> arguments in local time may lead to unexpected results.
23
+
/// </para>
24
+
/// <para>
24
25
/// Temporal queries are always set as 'NoTracking'.
25
26
/// </para>
26
27
/// </summary>
27
28
/// <param name="source">Source DbSet on which the temporal operation is applied.</param>
28
-
/// <param name="pointInTime"><see cref="DateTime" /> representing a point in time for which the results should be returned.</param>
29
+
/// <param name="utcPointInTime"><see cref="DateTime" /> representing a point in time for which the results should be returned.</param>
29
30
/// <returns> An <see cref="IQueryable{T}" /> representing the entities at a given point in time.</returns>
@@ -53,17 +54,20 @@ public static IQueryable<TEntity> TemporalAsOf<TEntity>(
53
54
/// All versions of entities in that were present within the time range are returned, so it is possible to return multiple entities with the same key.
54
55
/// </para>
55
56
/// <para>
57
+
/// Temporal information is stored in UTC format on the database so any <see cref="DateTime" /> arguments in local time may lead to unexpected results.
58
+
/// </para>
59
+
/// <para>
56
60
/// Temporal queries are always set as 'NoTracking'.
57
61
/// </para>
58
62
/// </summary>
59
63
/// <param name="source">Source DbSet on which the temporal operation is applied.</param>
60
-
/// <param name="from">Point in time representing the start of the period for which results should be returned.</param>
61
-
/// <param name="to">Point in time representing the end of the period for which results should be returned.</param>
64
+
/// <param name="utcFrom">Point in time representing the start of the period for which results should be returned.</param>
65
+
/// <param name="utcTo">Point in time representing the end of the period for which results should be returned.</param>
62
66
/// <returns> An <see cref="IQueryable{T}" /> representing the entities present in a given time range.</returns>
@@ -89,17 +93,20 @@ public static IQueryable<TEntity> TemporalFromTo<TEntity>(
89
93
/// All versions of entities in that were present within the time range are returned, so it is possible to return multiple entities with the same key.
90
94
/// </para>
91
95
/// <para>
96
+
/// Temporal information is stored in UTC format on the database so any <see cref="DateTime" /> arguments in local time may lead to unexpected results.
97
+
/// </para>
98
+
/// <para>
92
99
/// Temporal queries are always set as 'NoTracking'.
93
100
/// </para>
94
101
/// </summary>
95
102
/// <param name="source">Source DbSet on which the temporal operation is applied.</param>
96
-
/// <param name="from">Point in time representing the start of the period for which results should be returned.</param>
97
-
/// <param name="to">Point in time representing the end of the period for which results should be returned.</param>
103
+
/// <param name="utcFrom">Point in time representing the start of the period for which results should be returned.</param>
104
+
/// <param name="utcTo">Point in time representing the end of the period for which results should be returned.</param>
98
105
/// <returns> An <see cref="IQueryable{T}" /> representing the entities present in a given time range.</returns>
@@ -125,17 +132,20 @@ public static IQueryable<TEntity> TemporalBetween<TEntity>(
125
132
/// All versions of entities in that were present within the time range are returned, so it is possible to return multiple entities with the same key.
126
133
/// </para>
127
134
/// <para>
135
+
/// Temporal information is stored in UTC format on the database so any <see cref="DateTime" /> arguments in local time may lead to unexpected results.
136
+
/// </para>
137
+
/// <para>
128
138
/// Temporal queries are always set as 'NoTracking'.
129
139
/// </para>
130
140
/// </summary>
131
141
/// <param name="source">Source DbSet on which the temporal operation is applied.</param>
132
-
/// <param name="from">Point in time representing the start of the period for which results should be returned.</param>
133
-
/// <param name="to">Point in time representing the end of the period for which results should be returned.</param>
142
+
/// <param name="utcFrom">Point in time representing the start of the period for which results should be returned.</param>
143
+
/// <param name="utcTo">Point in time representing the end of the period for which results should be returned.</param>
134
144
/// <returns> An <see cref="IQueryable{T}" /> representing the entities present in a given time range.</returns>
0 commit comments