Jump to content

Erro ao criar a migração ASP.NET devido a múltiplas restrições de chave estrangeira


Go to solution Solved by Luis Briga,

Recommended Posts

Posted

Estou enfrentando um problema ao criar a migração inicial do meu projeto ASP.NET. Após definir models e data anotations, ao tentar criar a base de dados, encontro o seguinte erro na Consola do NuGet:

Failed executing DbCommand (7ms) [Parameters=[], CommandType='Text', CommandTimeout='30']
CREATE TABLE [FCT] (
    [IdFCT] int NOT NULL IDENTITY,
    [AlunoIdAluno] int NOT NULL,
    [EmpresaIdEmpresa] int NOT NULL,
    [InstituicaoEnsinoIdInstituicao] int NOT NULL,
    [DataInicioFCT] datetime2 NOT NULL,
    [DataFimFCT] datetime2 NOT NULL,
    [PeriodoFCTIdPeriodo] int NOT NULL,
    [AvaliacaoIdAvaliacao] int NOT NULL,
    [DocumentosIdDocumento] int NOT NULL,
    CONSTRAINT [PK_FCT] PRIMARY KEY ([IdFCT]),
    CONSTRAINT [FK_FCT_Alunos_AlunoIdAluno] FOREIGN KEY ([AlunoIdAluno]) REFERENCES [Alunos] ([IdAluno]) ON DELETE CASCADE,
    CONSTRAINT [FK_FCT_Avaliacao_AvaliacaoIdAvaliacao] FOREIGN KEY ([AvaliacaoIdAvaliacao]) REFERENCES [Avaliacao] ([IdAvaliacao]) ON DELETE CASCADE,
    CONSTRAINT [FK_FCT_Documentos_DocumentosIdDocumento] FOREIGN KEY ([DocumentosIdDocumento]) REFERENCES [Documentos] ([IdDocumento]) ON DELETE CASCADE,
    CONSTRAINT [FK_FCT_Empresa_EmpresaIdEmpresa] FOREIGN KEY ([EmpresaIdEmpresa]) REFERENCES [Empresa] ([IdEmpresa]) ON DELETE CASCADE,
    CONSTRAINT [FK_FCT_InstituicaoEnsino_InstituicaoEnsinoIdInstituicao] FOREIGN KEY ([InstituicaoEnsinoIdInstituicao]) REFERENCES [InstituicaoEnsino] ([IdInstituicao]) ON DELETE CASCADE,
    CONSTRAINT [FK_FCT_PeriodoFCT_PeriodoFCTIdPeriodo] FOREIGN KEY ([PeriodoFCTIdPeriodo]) REFERENCES [PeriodoFCT] ([IdPeriodo]) ON DELETE CASCADE

Introducing FOREIGN KEY constraint 'FK_FCT_InstituicaoEnsino_InstituicaoEnsinoIdInstituicao' on table 'FCT' may cause cycles or multiple cascade paths. Specify ON DELETE NO ACTION or ON UPDATE NO ACTION, or modify other FOREIGN KEY constraints.
Could not create constraint or index. See previous errors.

Aqui estão meus models (aqueles que acho que estão a causar o problema):

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

namespace FCTConnect.Models
{
    public class FCT
    {
        [Key]
        public int IdFCT { get; set; }

        public Aluno Aluno { get; set; }

        public Empresa Empresa { get; set; }

        public InstituicaoEnsino InstituicaoEnsino { get; set; }

        [Required]
        [DataType(DataType.Date)]
        public DateTime DataInicioFCT { get; set; }

        [Required]
        [DataType(DataType.Date)]
        public DateTime DataFimFCT { get; set; }

        public PeriodoFCT PeriodoFCT { get; set; }

        public Avaliacao Avaliacao { get; set; }

        public Documentos Documentos { get; set; }
    }
}
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

namespace FCTConnect.Models
{
    public class Aluno
    {
        [Key]
        public int IdAluno { get; set; }

        [Required]
        [StringLength(100)]
        public string Nome { get; set; }

        [Required]
        public int Idade { get; set; }

        [Required]
        [StringLength(100)]
        public string Curso { get; set; }

        [Required]
        [EmailAddress]
        public string Email { get; set; }

        [Required]
        [Phone]
        public string Telefone { get; set; }

        [Required]
        [StringLength(100)]
        public string Morada { get; set; }

        public InstituicaoEnsino InstituicaoEnsino { get; set; }
    }
}
using System.ComponentModel.DataAnnotations;

namespace FCTConnect.Models
{
    public class InstituicaoEnsino
    {
        [Key]
        public int IdInstituicao { get; set; }

        [Required]
        [StringLength(100)]
        public string Nome { get; set; }

        [Required]
        [StringLength(100)]
        public string Morada { get; set; }

        [Required]
        [EmailAddress]
        public string Email { get; set; }

        [Required]
        [Phone]
        public string Telefone { get; set; }

        [Required]
        [StringLength(500)]
        public string Descricao { get; set; }
    }
}

Este projeto está a ser desenvolvido no Visual Studio, em C# ASP.NET, com SQL Server. 

 

Fico grato a quem possa ajudar. 

 

Posted

A mensagem de erro é auto-explicativa e diz-te como resolver o problema:

Introducing FOREIGN KEY constraint 'FK_FCT_InstituicaoEnsino_InstituicaoEnsinoIdInstituicao' on table 'FCT' may cause cycles or multiple cascade paths. Specify ON DELETE NO ACTION or ON UPDATE NO ACTION, or modify other FOREIGN KEY constraints.

Redefine as chaves estrangeiras que têm problemas ou inclui "NO ACTION" nos eventos de update e delete.
Tens de ver qual das situações se aplica sendo que, pela minha experiência, esse tipo de situações são normalmente criadas por um mau modelo de dados. Nem sempre é assim, há situações raras e extremas que implicam modelos de dados mais "retorcidos", mas essas exceções são muito poucas.

 

10 REM Generation 48K!
20 INPUT "URL:", A$
30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50
40 PRINT "404 Not Found"
50 PRINT "./M6 @ Portugal a Programar."

 

  • Solution
Posted
Em 10/05/2024 às 10:32, M6 disse:

A mensagem de erro é auto-explicativa e diz-te como resolver o problema:

Introducing FOREIGN KEY constraint 'FK_FCT_InstituicaoEnsino_InstituicaoEnsinoIdInstituicao' on table 'FCT' may cause cycles or multiple cascade paths. Specify ON DELETE NO ACTION or ON UPDATE NO ACTION, or modify other FOREIGN KEY constraints.

Redefine as chaves estrangeiras que têm problemas ou inclui "NO ACTION" nos eventos de update e delete.
Tens de ver qual das situações se aplica sendo que, pela minha experiência, esse tipo de situações são normalmente criadas por um mau modelo de dados. Nem sempre é assim, há situações raras e extremas que implicam modelos de dados mais "retorcidos", mas essas exceções são muito poucas.

 

Boa tarde M6. Desde já quero agradecer pela resposta. Eu removi a declaração public InstituicaoEnsino InstituicaoEnsino { get; set; } na classe FCT. Eu pensei no seguinte:

Como estou a invocar a classe Aluno na classe FCT e como a classe Aluno invoca a classe InstituicaoEnsino, então quando eu quiser invocar a classe InstituicaoEnsino pela classe FCT, posso invocar a classe InstituicaoEnsino através da classe Aluno. Por exemplo: string nomeInstituicao = Aluno.InstituicaoEnsino.Nome (sendo apenas um exemplo superficial porque provavelmente a invocação não será assim tão simples).

O meu raciocínio está correto, ou vou ter problemas no desenvolvimento da minha aplicação web?

Posted

O teu raciocínio está correto.

10 REM Generation 48K!
20 INPUT "URL:", A$
30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50
40 PRINT "404 Not Found"
50 PRINT "./M6 @ Portugal a Programar."

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.