我有以下DbContext,我想使用Entity Framwork
进行迁移public class TestDbContext: DbContext
{
public DbSet<State> States { get; set; }
public DbSet<StateType> StateTypes { get; set; }
public DbSet<Measure> Measures { get; set; }
public DbSet<Priority> Priorities { get; set; }
public DbSet<Task> Tasks { get; set; }
public DbSet<TaskType> TaskTypes { get; set; }
public DbSet<Document> Documents { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
string databaseFilePath = "test.db";
try
{
databaseFilePath = Path.Combine(ApplicationData.Current.LocalFolder.Path, databaseFilePath);
}
catch (InvalidOperationException) { }
optionsBuilder.UseSqlite($"Data source={databaseFilePath}");
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
}
我发表了声明
enable-migrations -ContextTypeName TestData.TestDbContext
在程序包管理器控制台中生成配置。 但是这一代有编译错误,因为无法找到以下命名空间/类:
using System.Data.Entity;
using System.Data.Entity.Migrations;
DbMigrationsConfiguration
namespace TestData.Migrations
{
using System;
using System.Data.Entity;
using System.Data.Entity.Migrations;
using System.Linq;
internal sealed class Configuration : DbMigrationsConfiguration<TestDatas.TestDbContext>
{
public Configuration()
{
AutomaticMigrationsEnabled = false;
}
protected override void Seed(TestDatas.TestDbContext 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" }
// );
//
}
}
}
关于配置如何编译的任何解决方案,以便我可以添加迁移?
答案 0 :(得分:2)
此documentation on EF7可能会有所帮助。
我测试过,using Microsoft.Data.Entity;
应该使用此引用:
using System.Data.Entity.Migrations;
和using Microsoft.Data.Entity.Migrations;
也应更改为
{{1}}