NHibernate+SQLite 學習筆記(二)+使用FLuent NHibernate 建立會話工廠(session factory) 並對資料庫進行操作(open Session)

來源:互聯網
上載者:User

標籤:

 

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)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.