標籤:
1、建立一個會話工廠(session factory)
#region //********************建立一個會話工廠---Create Session Factory*******************//private void btnCreateSessionFactory_Click(object sender,RoutedEventArgs e){var factory = CreateSessionFactory();}private ISessionFactory CreateSessionFactory(){//*********************SQL Server************************////return Fluently.Configure()//.Database(MsSqlConfiguration//.MsSql2012//.ConnectionString(connString))//.Mappings(m => m.FluentMappings//.AddFromAssemblyOf<ProductMap>())//.BuildSessionFactory();//*********************SQLite************************//return Fluently.Configure().Database(SQLiteConfiguration.Standard.UsingFile(datasource)).Mappings(m => m.FluentMappings.AddFromAssemblyOf<ProductMap>())//.ExposeConfiguration(CreateSchema) ////因為CreateSchema是重新對應了一次資料庫,存在這句的時候當對錶進行添加資料時永遠只有一個值,其他的都會消失,而不存在這句時候則會新增加資料。.BuildSessionFactory();}#endregion
2、開啟會話對資料庫進行操作(open Session、seesion.Save、session.Query操作)
#region //*************************開啟會話,對資料庫進行操作*********************////******************************開啟一個會話,不操作****************************//private void btnCreateSession_Click(object sender,RoutedEventArgs e){var factory = CreateSessionFactory();using (var session = factory.OpenSession()){// do something with the session}}//******************************開啟一個會話對資料庫進行增操作****************************//private void btnAddCategory_Click(object sender,RoutedEventArgs e){var factory = CreateSessionFactory();using (var session = factory.OpenSession()){var category = new Category{Name = txtCategoryName.Text,Description = txtCategoryDescription.Text};session.Save(category);}}//**************************開啟會話對資料庫進行查操作************************************//private void btnLoadCategories_Click(object sender, RoutedEventArgs e){var factory = CreateSessionFactory();using (var session = factory.OpenSession()){var categories = session.Query<Category>().OrderBy(c => c.Name).ToList();lstCategories.ItemsSource = categories;lstCategories.DisplayMemberPath = "Name";}}#endregion
3、小結
通過簡單的執行個體操作,學習了NHibernate 對SQLite操作的簡單流程,具體如下:
1、定義一個模型(Model)
2、定義資料庫的工作方式(DataBase Schema)
3、映射模型到資料庫中(Mapping the Model to the DataBase)(這是否就是ORM的精髓呢?望大神給我解答下)
4、會話的使用和事務的啟用(Sessions and Transactions)
5、測試(Test)
如果有理解的不對,請大神指點。
NHibernate+SQLite 學習筆記(二)+使用FLuent NHibernate 建立會話工廠(session factory) 並對資料庫進行操作(open Session)