Ejemplo n.º 1
0
        public string GenerateSqlDropPrimayKey()
        {
            string sql = "";

            if (PrimaryKey != null)
            {
                sql = PrimaryKey.GenerateSqlDropConstraint();
            }

            return(sql);
        }