File: Columns.cs
Web Access
Project: src\src\Caching\SqlServer\src\Microsoft.Extensions.Caching.SqlServer.csproj (Microsoft.Extensions.Caching.SqlServer)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.Extensions.Caching.SqlServer;
 
internal static class Columns
{
    public static class Names
    {
        public const string CacheItemId = "Id";
        public const string CacheItemValue = "Value";
        public const string ExpiresAtTime = "ExpiresAtTime";
        public const string SlidingExpirationInSeconds = "SlidingExpirationInSeconds";
        public const string AbsoluteExpiration = "AbsoluteExpiration";
    }
 
    public static class Indexes
    {
        // The value of the following index positions is dependent on how the SQL queries
        // are selecting the columns.
        public const int CacheItemValueIndex = 0;
    }
}