实体框架代码第一种子数据

本文关键字:种子 数据 框架 代码 实体 | 更新日期: 2023-09-27 17:57:46

我在实体框架中使用代码优先的方法,但我无法将默认数据种子放入表中。请帮忙。

型号

public class Employee
    {
        public int Id { get; set; }
        public string FirstName { get; set; }
        public string LastName { get; set; }
        public string Gender { get; set; }
        public int Salary { get; set; }

        public virtual Department Departments { get; set; }
    }
 public class Department
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public string Location { get; set; }
        public virtual ICollection<Employee> Employees { get; set; }
        public Department()
        {
            this.Employees = new List<Employee>();
        }
    }

初始化程序

public class DepartmentInitializer : DropCreateDatabaseIfModelChanges<EmployeeDBContext>
    {
        protected override void Seed(EmployeeDBContext context)
        {
            IList<Department> lst = new List<Department>
            {
                new Department
                {
                    Name = "Developer",
                    Location = "Bangalore"
                },
                new Department
                {
                    Name = "Tester",
                    Location = "Bangalore"
                },
                new Department
                {
                    Name = "IT Services",
                    Location = "Chennai"
                }
            };
            foreach (var item in lst)
            {
                context.Departments.Add(item);
            }
            context.SaveChanges();
        }
    }

主应用

class Program
    {
        static void Main(string[] args)
        {
            using (var db = new EmployeeDBContext())
            {
                Database.SetInitializer<EmployeeDBContext>(new DepartmentInitializer());
            }
        }
    }

实体框架代码第一种子数据

对于Entity Framework的版本6,使用"migrations"是首选的数据库版本方法,使用本教程中所示的"Configuration.Seed"方法:

http://www.asp.net/web-api/overview/data/using-web-api-with-entity-framework/part-3

您是否尝试过从软件包管理器控制台运行"更新数据库"以使其工作?

我知道我在使用EF6的旧种子方法时遇到了问题。实体框架核心1(前身为EF7)的迁移也发生了变化,因此请确保将正确的技术应用于正确的版本。

尝试实际查询您的数据库

在我的机器上,当我第一次查询时,播种机就会运行。

using (var db = new EmployeeDBContext())
{
    Database.SetInitializer<EmployeeDBContext>(new DepartmentInitializer());
    var depts = db.Departments.ToList();
}