internal ITypeDispatcher?GetColumnTypeDispatcher()
        {
            if (ColumnType == null)
            {
                return(null);
            }

            return(_columnTypeDispatcher ??= TypeDispatcher.Create(ColumnType));
        }