NHibernate - Podstawowe operacje CRUD
W tym rozdziale zajmiemy się podstawami CRUD operations. Teraz, gdy nasz system jest gotowy do uruchomienia, ponieważ z powodzeniem wdrożyliśmy naszą domenę klasy Student, zdefiniowaliśmy również pliki mapowania i skonfigurowaliśmy NHibernate. Możemy teraz używać niektórych zapytań do wykonywania operacji CRUD.
Utwórz dane
Jak widać, nie mamy danych w naszej tabeli Studentów w formacie NHibernateDemoDB Baza danych.
Aby dodać trochę danych, musimy wykonać Add/Create działanie, jak pokazano poniżej.
using (var session = sefact.OpenSession()) {
using (var tx = session.BeginTransaction()) {
var student1 = new Student {
ID = 1,
FirstMidName = "Allan",
LastName = "Bommer"
};
var student2 = new Student {
ID = 2,
FirstMidName = "Jerry",
LastName = "Lewis"
};
session.Save(student1);
session.Save(student2);
tx.Commit();
}
Console.ReadLine();
}
Jak widać, utworzyliśmy dwóch uczniów, a następnie wywołaliśmy metodę Save () klasy OpenSession a następnie wywołaj Commit () programu BeginTransaction. Oto pełna implementacja wProgram.cs plik
using NHibernate.Cfg;
using NHibernate.Dialect;
using NHibernate.Driver;
using System;
using System.Linq;
using System.Reflection;
namespace NHibernateDemoApp {
class Program {
static void Main(string[] args) {
var cfg = new Configuration();
String Data Source = asia13797\\sqlexpress;
String Initial Catalog = NHibernateDemoDB;
String Integrated Security = True;
String Connect Timeout = 15;
String Encrypt = False;
String TrustServerCertificate = False;
String ApplicationIntent = ReadWrite;
String MultiSubnetFailover = False;
cfg.DataBaseIntegration(x = > { x.ConnectionString = "Data Source +
Initial Catalog + Integrated Security + Connect Timeout + Encrypt +
TrustServerCertificate + ApplicationIntent + MultiSubnetFailover";
x.Driver<SqlClientDriver>();
x.Dialect<MsSql2008Dialect>();
});
cfg.AddAssembly(Assembly.GetExecutingAssembly());
var sefact = cfg.BuildSessionFactory();
using (var session = sefact.OpenSession()) {
using (var tx = session.BeginTransaction()) {
var student1 = new Student {
ID = 1,
FirstMidName = "Allan",
LastName = "Bommer"
};
var student2 = new Student {
ID = 2,
FirstMidName = "Jerry",
LastName = "Lewis"
};
session.Save(student1);
session.Save(student2);
tx.Commit();
}
Console.ReadLine();
}
}
}
}
Teraz uruchommy tę aplikację, a następnie przejdźmy do Eksploratora obiektów SQL Server i odświeżmy bazę danych. Zobaczysz, że dwóch powyższych uczniów zostało dodanych do tabeli Studentów w bazie danych NHibernateDemoDB.
Odczytaj dane z tabeli uczniów
Możesz zobaczyć, że teraz mamy dwa rekordy w naszej tabeli uczniów. Aby odczytać te rekordy z tabeli, musimy wywołaćCreateCriteria() of OpenSession, jak pokazano w poniższym kodzie.
using (var session = sefact.OpenSession()) {
using (var tx = session.BeginTransaction()) {
var students = session.CreateCriteria<Student>().List<Student>();
foreach (var student in students) {
Console.WriteLine("{0} \t{1} \t{2}",
student.ID,student.FirstMidName, student.LastName);
}
tx.Commit();
}
Console.ReadLine();
}
Więc jeśli chcesz listę rekordów, możemy po prostu powiedzieć lista typu Student.
Teraz użyj foreach przez wszystkich uczniów i powiedz: wydrukuj identyfikator, FirstMidName i LastNamena konsoli. Teraz uruchommy ponownie tę aplikację, a zobaczysz następujące dane wyjściowe w oknie konsoli.
1 Allan Bommer
2 Jerry Lewis
Możesz również pobrać dowolny rekord, określając identyfikator w pliku Get() metoda OpenSession przy użyciu następującego kodu.
using (var session = sefact.OpenSession()) {
using (var tx = session.BeginTransaction()) {
var students = session.CreateCriteria<Student>().List<Student>();
foreach (var student in students) {
Console.WriteLine("{0} \t{1} \t{2}", student.ID,
student.FirstMidName, student.LastName);
}
var stdnt = session.Get<Student>(1);
Console.WriteLine("Retrieved by ID");
Console.WriteLine("{0} \t{1} \t{2}", stdnt.ID,
stdnt.FirstMidName, stdnt.LastName);
tx.Commit();
}
Console.ReadLine();
}
Teraz po uruchomieniu aplikacji zobaczysz następujące dane wyjściowe.
1 Allan Bommer
2 Jerry Lewis
Retrieved by ID
1 Allan Bommer
Zaktualizuj rekord
Aby zaktualizować rekord w tabeli, musimy najpierw pobrać ten konkretny rekord, a następnie zaktualizować ten rekord, wywołując funkcję Update() metoda OpenSession, jak pokazano w poniższym kodzie.
using (var session = sefact.OpenSession()) {
using (var tx = session.BeginTransaction()) {
var students = session.CreateCriteria<Student>().List<Student>();
foreach (var student in students) {
Console.WriteLine("{0} \t{1} \t{2}", student.ID,
student.FirstMidName, student.LastName);
}
var stdnt = session.Get<Student>(1);
Console.WriteLine("Retrieved by ID");
Console.WriteLine("{0} \t{1} \t{2}", stdnt.ID, stdnt.FirstMidName, stdnt.LastName);
Console.WriteLine("Update the last name of ID = {0}", stdnt.ID);
stdnt.LastName = "Donald";
session.Update(stdnt);
Console.WriteLine("\nFetch the complete list again\n");
foreach (var student in students) {
Console.WriteLine("{0} \t{1} \t{2}", student.ID,
student.FirstMidName, student.LastName);
}
tx.Commit();
}
Console.ReadLine();
}
Teraz po uruchomieniu aplikacji zobaczysz następujące dane wyjściowe.
1 Allan Bommer
2 Jerry Lewis
Retrieved by ID
1 Allan Bommer
Update the last name of ID = 1
Fetch the complete list again
1 Allan Donald
2 Jerry Lewis
Jak widać, LastName o ID równym 1 jest aktualizowane z Bommera do Donalda.
Usuń rekord
Aby usunąć dowolny rekord z tabeli, musimy najpierw pobrać ten konkretny rekord, a następnie usunąć ten rekord, wywołując funkcję Delete() metoda OpenSession, jak pokazano w poniższym kodzie.
using (var session = sefact.OpenSession()) {
using (var tx = session.BeginTransaction()) {
var students = session.CreateCriteria<Student>().List<Student>();
foreach (var student in students) {
Console.WriteLine("{0} \t{1} \t{2}", student.ID,
student.FirstMidName, student.LastName);
}
var stdnt = session.Get<Student>(1);
Console.WriteLine("Retrieved by ID");
Console.WriteLine("{0} \t{1} \t{2}", stdnt.ID, stdnt.FirstMidName, stdnt.LastName);
Console.WriteLine("Delete the record which has ID = {0}", stdnt.ID);
session.Delete(stdnt);
Console.WriteLine("\nFetch the complete list again\n");
foreach (var student in students) {
Console.WriteLine("{0} \t{1} \t{2}", student.ID, student.FirstMidName,
student.LastName);
}
tx.Commit();
}
Console.ReadLine();
}
Teraz po uruchomieniu aplikacji zobaczysz następujące dane wyjściowe.
1 Allan Donald
2 Jerry Lewis
Retrieved by ID
1 Allan Bommer
Delete the record which has ID = 1
Fetch the complete list again
2 Jerry Lewis
Jak widać, rekord o identyfikatorze równym 1 nie jest już dostępny w bazie danych. Możesz również zobaczyć bazę danych w Eksploratorze obiektów SQL Server.