Here's my model
public class Movie
{
public int MovieID { get; set; }
public int GenreID { get; set; }
[Required, StringLength(200)]
public string Title { get; set; }
public int MovieLength { get; set; }
[Required, StringLength(1000)]
public string MovieSummary { get; set; }
public virtual Genre Genre { get; set; }
}
public class Genre
{
public int GenreID { get; set; }
public string GenreName { get; set; }
public virtual IEnumerable<Movie> Movies { get; set; }
}
public class ZimelleShopDbContext : DbContext
{
public DbSet<Movie> Movies { get; set; }
public DbSet<Genre> Genres { get; set; }
}
ScottGu has written a Tutorial that shows how to seed a table. I'd like to know how to seed the above example with in case of those 2 tables in One-To-Many relationship.
Thanks for helping
EDIT
I did it the other way around, and it worked. The only thing I had to take care of is to instantiate the ICollection.
public class Genre
{
public Genre()
{
Movies = new List<Movie>();
}
//...
}
Then I did this
protected override void Seed(ZimelleShopDbContext context)
{
var genre = new Genre { GenreName = "Foo" };
var movie = new Movie { Title = "Bar", MovieSummary = "Baz" };
genre.Movies.Add(movie);
context.Genres.Add(genre);
context.SaveChanges();
}
It still works.