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
GuidCombGenerator using DateTime.UtcNow instead of DateTime.Now as .Now is affected by daylight saving time (DST) changes. This results in once a year the keys to not be sequential to previous keys.
* DateTime.Now is also much slower then DateTime.UtcNow as .Now needs to apply timezone offsets to the time.
* Also a small optimalisation as the base value does not need to be generated each time a guid is generate.
0 commit comments