public ExpressionSyntax VisitGuidColumnType(GuidColumnType guidColumnType, ColumnContext columnContext)
        {
            ColumnModel columnModel = columnContext.ColumnModel;
            string      methodName  = guidColumnType.IsNullable ? nameof(CreateNullableGuidColumn) : nameof(CreateGuidColumn);

            return(InvokeThis(methodName, LiteralExpr(columnModel.DbName.Name), GenColumnMeta(columnContext)));
        }
        public IdentifierNameSyntax VisitGuidColumnType(GuidColumnType guidColumnType, object?arg)
        {
            string className = guidColumnType.IsNullable ? nameof(NullableGuidTableColumn) : nameof(GuidTableColumn);

            return(SyntaxFactory.IdentifierName(className));
        }