1
resposta

Erro ao criar o migration-inicial

Está retornando o erro. Add-Migration Inicial

An error occurred while accessing the IWebHost on class 'Program'. Continuing without the application service provider. Error: No suitable constructor found for entity type 'ItemPedido'. The following parameters could not be bound to properties of the entity: 'produto', 'produto'. `

1 resposta

Olá, Michel

A classe ItemPedido precisa ter um construtor sem parâmetro. Se ela não tiver, por favor adicione essas linhas na classe ItemPedido:

public ItemPedido() { }