internal sealed class Configuration : DbMigrationsConfiguration<Start_with_Code_First.DBContextModels.SchoolEntities>
    {
        public Configuration()
        {
            AutomaticMigrationsEnabled = true;
        }        protected override void Seed(Start_with_Code_First.DBContextModels.SchoolEntities context)
        {
            //  This method will be called after migrating to the latest version.            //  You can use the DbSet<T>.AddOrUpdate() helper extension method 
            //  to avoid creating duplicate seed data. E.g.
            //
            //    context.People.AddOrUpdate(
            //      p => p.FullName,
            //      new Person { FullName = "Andrew Peters" },
            //      new Person { FullName = "Brice Lambson" },
            //      new Person { FullName = "Rowan Miller" }
            //    );
            //
        }
    }
Seed这个方法是干嘛用的?是初始化数据用的吗?求详细解释Code First