From d4122d1fb618e13d14d5801d0c9655b1daa4df14 Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Thu, 29 Aug 2024 10:27:41 -0400 Subject: [PATCH] Switch to UtcDateTime (#4710) --- .../EntityFrameworkCache.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Infrastructure.EntityFramework/EntityFrameworkCache.cs b/src/Infrastructure.EntityFramework/EntityFrameworkCache.cs index 197723febf..a9293b953a 100644 --- a/src/Infrastructure.EntityFramework/EntityFrameworkCache.cs +++ b/src/Infrastructure.EntityFramework/EntityFrameworkCache.cs @@ -38,7 +38,7 @@ public class EntityFrameworkCache : IDistributedCache using var scope = _serviceScopeFactory.CreateScope(); var dbContext = GetDatabaseContext(scope); var cache = dbContext.Cache - .Where(c => c.Id == key && _timeProvider.GetUtcNow().DateTime <= c.ExpiresAtTime) + .Where(c => c.Id == key && _timeProvider.GetUtcNow().UtcDateTime <= c.ExpiresAtTime) .SingleOrDefault(); if (cache == null) @@ -63,7 +63,7 @@ public class EntityFrameworkCache : IDistributedCache using var scope = _serviceScopeFactory.CreateScope(); var dbContext = GetDatabaseContext(scope); var cache = await dbContext.Cache - .Where(c => c.Id == key && _timeProvider.GetUtcNow().DateTime <= c.ExpiresAtTime) + .Where(c => c.Id == key && _timeProvider.GetUtcNow().UtcDateTime <= c.ExpiresAtTime) .SingleOrDefaultAsync(cancellationToken: token); if (cache == null) @@ -185,7 +185,7 @@ public class EntityFrameworkCache : IDistributedCache private Cache SetCache(Cache? cache, string key, byte[] value, DistributedCacheEntryOptions options) { - var utcNow = _timeProvider.GetUtcNow().DateTime; + var utcNow = _timeProvider.GetUtcNow().UtcDateTime; // resolve options if (!options.AbsoluteExpiration.HasValue && @@ -219,7 +219,7 @@ public class EntityFrameworkCache : IDistributedCache throw new InvalidOperationException("The absolute expiration value must be in the future."); } - absoluteExpiration = options.AbsoluteExpiration.Value.DateTime; + absoluteExpiration = options.AbsoluteExpiration.Value.UtcDateTime; } // set values on cache @@ -244,7 +244,7 @@ public class EntityFrameworkCache : IDistributedCache private bool UpdateCacheExpiration(Cache cache) { - var utcNow = _timeProvider.GetUtcNow().DateTime; + var utcNow = _timeProvider.GetUtcNow().UtcDateTime; if (cache.SlidingExpirationInSeconds.HasValue && (cache.AbsoluteExpiration.HasValue || cache.AbsoluteExpiration != cache.ExpiresAtTime)) { if (cache.AbsoluteExpiration.HasValue && (cache.AbsoluteExpiration.Value - utcNow).TotalSeconds <= cache.SlidingExpirationInSeconds) @@ -264,7 +264,7 @@ public class EntityFrameworkCache : IDistributedCache { lock (_mutex) { - var utcNow = _timeProvider.GetUtcNow().DateTime; + var utcNow = _timeProvider.GetUtcNow().UtcDateTime; if ((utcNow - _lastExpirationScan) > _expiredItemsDeletionInterval) { _lastExpirationScan = utcNow; @@ -280,7 +280,7 @@ public class EntityFrameworkCache : IDistributedCache { using var scope = _serviceScopeFactory.CreateScope(); GetDatabaseContext(scope).Cache - .Where(c => _timeProvider.GetUtcNow().DateTime > c.ExpiresAtTime) + .Where(c => _timeProvider.GetUtcNow().UtcDateTime > c.ExpiresAtTime) .ExecuteDelete(); }