Entity Framework - wiele DbContext
W tym rozdziale dowiemy się, jak migrować zmiany do bazy danych, gdy w aplikacji znajduje się wiele klas DbContext.
- Wiele DbContext zostało po raz pierwszy wprowadzonych w Entity Framework 6,0.
- Wiele klas kontekstu może należeć do jednej bazy danych lub dwóch różnych baz danych.
W naszym przykładzie zdefiniujemy dwie klasy Context dla tej samej bazy danych. W poniższym kodzie znajdują się dwie klasy DbContext dla ucznia i nauczyciela.
public class Student {
public int ID { get; set; }
public string LastName { get; set; }
public string FirstMidName { get; set; }
public DateTime EnrollmentDate { get; set; }
}
public class MyStudentContext : DbContext {
public MyStudentContext() : base("UniContextDB") {}
public virtual DbSet<Student> Students { get; set; }
}
public class Teacher {
public int ID { get; set; }
public string LastName { get; set; }
public string FirstMidName { get; set; }
public DateTime HireDate { get; set; }
}
public class MyTeacherContext : DbContext {
public MyTeacherContext() : base("UniContextDB") {}
public virtual DbSet<Teacher> Teachers { get; set; }
}
Jak widać w powyższym kodzie, istnieją dwa modele zwane „Uczniem” i „Nauczycielem”. Każdy z nich jest powiązany z określoną klasą kontekstu, tj. Student jest powiązany z MyStudentContext, a Nauczyciel jest powiązany z MyTeacherContext.
Oto podstawowa zasada migracji zmian w bazie danych, gdy w tym samym projekcie istnieje wiele klas Context.
enable-migrations -ContextTypeName <DbContext-Name-with-Namespaces> MigrationsDirectory: <Migrations-Directory-Name>
Add-Migration -configuration <DbContext-Migrations-Configuration-Class-withNamespaces> <Migrations-Name>
Update-Database -configuration <DbContext-Migrations-Configuration-Class-withNamespaces> -Verbose
Włączmy migrację dla MyStudentContext, wykonując następujące polecenie w konsoli Menedżera pakietów.
PM→ enable-migrations -ContextTypeName:EFCodeFirstDemo.MyStudentContext
Po wykonaniu dodamy model do historii migracji iw tym celu musimy uruchomić polecenie add-migration w tej samej konsoli.
PM→ add-migration -configuration EFCodeFirstDemo.Migrations.Configuration Initial
Dodajmy teraz trochę danych do tabel uczniów i nauczycieli w bazie danych.
static void Main(string[] args) {
using (var context = new MyStudentContext()) {
//// Create and save a new Students
Console.WriteLine("Adding new students");
var student = new Student {
FirstMidName = "Alain",
LastName = "Bomer",
EnrollmentDate = DateTime.Parse(DateTime.Today.ToString())
//Age = 24
};
context.Students.Add(student);
var student1 = new Student {
FirstMidName = "Mark",
LastName = "Upston",
EnrollmentDate = DateTime.Parse(DateTime.Today.ToString())
//Age = 30
};
context.Students.Add(student1);
context.SaveChanges();
// Display all Students from the database
var students = (from s in context.Students orderby s.FirstMidName
select s).ToList<Student>();
Console.WriteLine("Retrieve all Students from the database:");
foreach (var stdnt in students) {
string name = stdnt.FirstMidName + " " + stdnt.LastName;
Console.WriteLine("ID: {0}, Name: {1}", stdnt.ID, name);
}
Console.WriteLine("Press any key to exit...");
Console.ReadKey();
}
using (var context = new MyTeacherContext()) {
//// Create and save a new Teachers
Console.WriteLine("Adding new teachers");
var student = new Teacher {
FirstMidName = "Alain",
LastName = "Bomer",
HireDate = DateTime.Parse(DateTime.Today.ToString())
//Age = 24
};
context.Teachers.Add(student);
var student1 = new Teacher {
FirstMidName = "Mark",
LastName = "Upston",
HireDate = DateTime.Parse(DateTime.Today.ToString())
//Age = 30
};
context.Teachers.Add(student1);
context.SaveChanges();
// Display all Teachers from the database
var teachers = (from t in context.Teachers orderby t.FirstMidName
select t).ToList<Teacher>();
Console.WriteLine("Retrieve all teachers from the database:");
foreach (var teacher in teachers) {
string name = teacher.FirstMidName + " " + teacher.LastName;
Console.WriteLine("ID: {0}, Name: {1}", teacher.ID, name);
}
Console.WriteLine("Press any key to exit...");
Console.ReadKey();
}
}
Po wykonaniu powyższego kodu zobaczysz, że tworzone są dwie różne tabele dla dwóch różnych modeli, jak pokazano na poniższej ilustracji.
Zalecamy wykonanie powyższego przykładu krok po kroku w celu lepszego zrozumienia.