Код: Выделить всё
public static void Seed(this ModelBuilder modelBuilder)
{
Entity[] entities = new Entity[]
{
new Entity
{
Id = 1,
Description = "Test description 1"
},
new Entity
{
Id = 1,
Description = "Test description 1"
}
}
}
Код: Выделить всё
public class Entity
{
[Key]
public ins Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public IList AnotherEntity { get; set; } = new List();
}
Как мне решить эту проблему?
Подробнее здесь: https://stackoverflow.com/questions/686 ... d-entities