private static TableConfig CreateTableConfig()

in src/DynamoDBSessionStateStore.cs [915:922]


        private static TableConfig CreateTableConfig(string tableName)
        {
            var tableConfig = new TableConfig(tableName)
            {
                Conversion = DynamoDBEntryConversion.V1
            };
            return tableConfig;
        }