In an override of the "Seed" method of a DatabaseInitializer I've added some items to the context but I'm getting referential integrity errors I presume because the items are being added to the database in the wrong order. How is the order defined?
I can add the items to the db with raw SQL after the db has been generated so I don't think there's anything wrong with the data.
E.g.
new List<PropertyType>
{
new PropertyType {Name = "Text"},
new PropertyType {Name = "Colour"},
new PropertyType {Name = "Image"}
}.ForEach(e => context.PropertyTypes.Add(e));
base.Seed(context);
new List<Property>
{
new Property {Name = "font", PropertyTypeId = 1},
new Property {Name = "colour", PropertyTypeId = 2},
new Property {Name = "background-image", PropertyTypeId = 3}
}.ForEach(e => context.Properties.Add(e));
base.Seed(context);
I can run the first seed on its own and it works. Second seed causes a referential integrity error. Totally simple relationship.
public class Property
{
[Key]
public int PropertyId { get; set; }
[Required, StringLength(100)]
public string Name { get; set; }
[Required]
public int PropertyTypeId { get; set; }
public PropertyType PropertyType { get; set; }
}
public class PropertyType
{
[Key]
public int PropertyTypeId { get; set; }
[Required, StringLength(50)]
public string Name { get; set; }
public IList<Property> Properties { get; set; }
}
base.Seed? – Ladislav Mrnka Feb 23 '12 at 12:46PropertyandPropertyTypeclasses. – Ladislav Mrnka Feb 23 '12 at 13:39