Fluent NHibernate and Mysql,SQLite

来源:http://www.cnblogs.com/geovindu/archive/2016/03/31/5343381.html
-Advertisement-
Play Games

http://codeofrob.com/entries/sqlite-csharp-and-nhibernate.html https://code.google.com/archive/p/csharp-sqlite/downloads https://github.com/davybrion/ ...


http://codeofrob.com/entries/sqlite-csharp-and-nhibernate.html

https://code.google.com/archive/p/csharp-sqlite/downloads

https://github.com/davybrion/NHibernateWorkshop

MySQL

sql:

#my sql test

DROP TABLE Department;

CREATE TABLE Department
(
	Id  INT  AUTO_INCREMENT PRIMARY KEY,
	DepName VARCHAR(50),
	PhoneNumber VARCHAR(50)
);

INSERT INTO Department(DepName,PhoneNumber) VALUES('IT','222323');

select * from Department;


CREATE TABLE Employee
(
	Id  INT AUTO_INCREMENT PRIMARY KEY,
	FirstName VARCHAR(50),	
	Position  VARCHAR(50),
	DepartmentId INT not null,
	  CONSTRAINT  dememp_id foreign key(DepartmentId) REFERENCES Department(Id) 
      ON DELETE NO ACTION 
      ON UPDATE CASCADE
);

INSERT INTO Employee(FirstName,Position,DepartmentId) VALUES('sd','SE',1)

  

  /// <summary>
         ///MySQL 創建ISessionFactory
         /// </summary>
         /// <returns></returns>
         public static ISessionFactory GetSessionFactory()
         {
             if (_sessionFactory == null)
             {
                 lock (_objLock)
                 {
                     if (_sessionFactory == null)
                     {
                         //配置ISessionFactory
                         _sessionFactory = FluentNHibernate.Cfg.Fluently.Configure()
                             //資料庫配置
                        .Database(FluentNHibernate.Cfg.Db.MySQLConfiguration.Standard
                            .ConnectionString(c=>c.Server("")
                            .Database("geovindu")
                            .Password("520")
                            .Username("root"))
                            )                            
                        .Mappings(m => m
                         //.FluentMappings.PersistenceModel
                         //.FluentMappings.AddFromAssembly();                       
                         .FluentMappings.AddFromAssembly(Assembly.GetExecutingAssembly())) //用法註意            
                     .BuildSessionFactory();
                        

                    //    Fluently.Configure().Database(
                    //    MySqlConfiguration.Standard.ConnectionString(
                    //        c => c.FromConnectionStringWithKey("ConnectionString")
                    //    )
                    //)
                    //.Mappings(m => m.FluentMappings.AddFromAssemblyOf<MyAutofacModule>())
                    //.BuildSessionFactory())

                     }
                 }
             }
             return _sessionFactory;
 
         }
         /// <summary>
         /// 重置Session
         /// </summary>
         /// <returns></returns>
         public static ISession ResetSession()
         {
             if (_session.IsOpen)
                 _session.Close();
             _session = _sessionFactory.OpenSession();
             return _session;
         }
         /// <summary>
         /// 打開ISession
         /// </summary>
         /// <returns></returns>
         public static ISession GetSession()
         {
              GetSessionFactory();
             if (_session == null)
             {
                 lock (_objLock)
                 {
                     if (_session == null)
                     {
                         _session = _sessionFactory.OpenSession();
                     }
                 }
             }
             return _session;
         }

 SQLite sql:

--sqlite
--create database geovindu;

--use geovindu;

drop table Department;

CREATE TABLE Department
(
	Id  INTEGER PRIMARY KEY  AUTOINCREMENT,
	DepName VARCHAR(50),
	PhoneNumber VARCHAR(50)
);

INSERT INTO Department(DepName,PhoneNumber) VALUES('IT','222323');

select * from Department;

drop table Employee;

CREATE TABLE Employee
(
	Id  INTEGER PRIMARY KEY AUTOINCREMENT ,
	FirstName VARCHAR(50),	
	Position  VARCHAR(50),
	DepartmentId INT not null,
	  CONSTRAINT  dememp_id foreign key(DepartmentId) REFERENCES Department(Id) 
      ON DELETE NO ACTION 
      ON UPDATE CASCADE
);

INSERT INTO Employee(FirstName,Position,DepartmentId) VALUES('sd','SE',1)

select * from Employee

  https://github.com/ladenedge/FluentNHibernate.Cfg.Db.CsharpSqlite

SQLite (測試ISessionFactory還存在問題)

 /// <summary>
    /// http://frankdecaire.blogspot.com/2014/04/fluent-nhibernate-unit-testing-using.html
    /// </summary>
    public static class SQLLiteSessionFactory
    {
        private static ISessionFactory _sessionFactory;
        private static ISessionFactory SessionFactory
        {
            get
            {
                if (_sessionFactory == null)
                {
                    _sessionFactory = Fluently.Configure()
                    .Database(SQLiteConfiguration
                            .Standard
                            .InMemory()
                            .UsingFile("sibodu.db")
                    )
                    .Mappings(m => m.FluentMappings.AddFromAssemblyOf<NHibernateTestProject.Entites.Department>())
                    .Mappings(m => m.FluentMappings.AddFromAssemblyOf<NHibernateTestProject.Entites.Employee>())
                    .ExposeConfiguration(cfg => new SchemaExport(cfg).Create(true, true))
                    .BuildSessionFactory();
                }
                return _sessionFactory;
            }
        }
        public static ISession OpenSession()
        {
            return SessionFactory.OpenSession();
        }
    }

  

/// http://www.cnblogs.com/vingi/articles/4302497.html
/// http://codeofrob.com/entries/sqlite-csharp-and-nhibernate.html
/// http://frankdecaire.blogspot.com/2014/04/fluent-nhibernate-unit-testing-using.html

 /// <summary>
    /// Nhibernate
    /// </summary>
    public class MonoSQLiteDriver : NHibernate.Driver.ReflectionBasedDriver
    {
        public MonoSQLiteDriver()
            : base(
            "Mono.Data.Sqlite",
            "Mono.Data.Sqlite",
            "Mono.Data.Sqlite.SqliteConnection",
            "Mono.Data.Sqlite.SqliteCommand")
        {
        }

        public override bool UseNamedPrefixInParameter
        {
            get
            {
                return true;
            }
        }

        public override bool UseNamedPrefixInSql
        {
            get
            {
                return true;
            }
        }

        public override string NamedPrefix
        {
            get
            {
                return "@";
            }
        }

        public override bool SupportsMultipleOpenReaders
        {
            get
            {
                return false;
            }
        }
    } 

/// <summary>
    /// Fluent NHibernate
    ///
    /// </summary>
    public class MonoSQLiteConfiguration : PersistenceConfiguration<MonoSQLiteConfiguration>
    {
        public static MonoSQLiteConfiguration Standard
        {
            get { return new MonoSQLiteConfiguration(); }
        }
        /// <summary>
        /// 
        /// </summary>
        public MonoSQLiteConfiguration()
        {
            Driver<MonoSQLiteDriver>();
            Dialect<SQLiteDialect>();
            Raw("query.substitutions", "true=1;false=0");
        }
        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        public MonoSQLiteConfiguration InMemory()
        {
            Raw("connection.release_mode", "on_close");
            return ConnectionString(c => c
                .Is("Data Source=:memory:;Version=3;"));//New=True;

        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="fileName"></param>
        /// <returns></returns>
        public MonoSQLiteConfiguration UsingFile(string fileName)
        {
            return ConnectionString(c => c
                .Is(string.Format("Data Source={0};Version=3;Pooling=true;FailIfMissing=false;UTF8Encoding=True;", fileName)));//New=True;
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="fileName"></param>
        /// <param name="password"></param>
        /// <returns></returns>
        public MonoSQLiteConfiguration UsingFileWithPassword(string fileName, string password)
        {
            return ConnectionString(c => c
                .Is(string.Format("Data Source={0};Version=3;New=True;Password={1};", fileName, password)));
        }
    }

  PostgreSQL

//https://developer.jboss.org/wiki/DatabasessupportedbyNHibernate
//https://github.com/daanl/Fluent-NHibernate--PostgreSQL-column-array

sql:

--PostgreSQL
drop table Department;

CREATE TABLE Department
(
	Id  SERIAL PRIMARY KEY,
	DepName VARCHAR(50),
	PhoneNumber VARCHAR(50)
);

INSERT INTO Department(DepName,PhoneNumber) VALUES('IT','222323');

select * from Department;

drop table Employee;

CREATE TABLE Employee
(
	Id  SERIAL PRIMARY KEY ,
	FirstName VARCHAR(50),	
	Position  VARCHAR(50),
	DepartmentId INT not null,
	  CONSTRAINT  dememp_id foreign key(DepartmentId) REFERENCES Department(Id) 
);

INSERT INTO Employee(FirstName,Position,DepartmentId) VALUES('sd','SE',1)

select * from Employee

  

   /// <summary>
        /// PostgreSQL
        /// </summary>
        /// <returns></returns>
        public static ISessionFactory GetSessionFactory()
        {
               
            if (_sessionFactory == null)
            {
                lock (_objLock)
                {
                    if (_sessionFactory == null)
                    {
                        var connectionStr = "Server=localhost;Port=5432;Database=geovindu;User Id=postgres;Password=770214;";
                        ISessionFactory sessionFactory = Fluently
                         .Configure()
                         .Database(PostgreSQLConfiguration.Standard.ConnectionString(connectionStr).ShowSql())
                         .Mappings(m => m.FluentMappings
                         //AddFromAssemblyOf<FluentNHibernateHelper>())  //TypeOfFluentNHibernateMapping
                         .AddFromAssembly(Assembly.GetExecutingAssembly())) //用法註意    
                         //.ExposeConfiguration(CreateSchema)
                         .BuildSessionFactory();

                    }
                }
            }
            return _sessionFactory;

        }      

  


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一、刪除 var為變數名, ${var#v*r}:從左到右匹配將:頭部是“v”,尾部是“r”的最短的部分刪除 ${var##v*r}:從左到右匹配將:頭部是“v”,尾部是“r”的最長的部分刪除 ${var%v*r}:從右到左匹配將:頭部是“v”,尾部是“r”的最短的部分刪除 ${var%%v*r}: ...
  • 原文地址:http://blog.csdn.net/fffanpei/article/details/8534693 WPF 內建了兩種菜單——Menu 和ContextMenu(上下文菜單)。 1. Menu Menu 的項可以是任何東西,但是你應該使用MenuItem 以及Separator 對 ...
  • C sharp 中Winform中的控制項很多,一個小小的問題居然會繞上一個小彎子,做界面的時候, 你需要在界面上弄一條分隔線,把相關的功能分隔開來,結果原來在其它 IDE編輯器里很容易實現的這個功能, 在C sharp中試了半天,本想用那個Panel容器控制項來做,結果調來調去,尺寸高度使終是4以上的 ...
  • IEnumerable沒有一個ForEach方法,我們可以使用C#寫一個擴展方法: Source Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using Sys ...
  • 寫在前面 閱讀目錄: 服務號和訂閱號 URL配置 創建菜單 查詢、刪除菜單 接受消息 發送消息(圖文、菜單事件響應) 示例Demo下載 後記 最近公司在做微信開發,其實就是介面開發,網上找了很多資料,當然園友也寫了很多教程,但都是理論說了一大堆,實用指導或代碼很少。如果你自己仔細研究下,其實就那麼點 ...
  • 閱讀目錄 開始 通過IHttpModule註冊過濾管道方式 通過BaseController 關於滑動過期 兩種方式 回到頂部 通過IHttpModule註冊過濾管道方式 具體實現如下: 聲明一個類CheckLoginModule.cs它繼承自IHttpModule 在請求管道的第9個事件 即獲得用 ...
  • Console.WriteLine("投擲100次的實驗:"); //提示信息 Random randomNum = new Random(); //創建一個隨機數 int num1 = 0; //定義出現1的次數 int num2 = 0; //定義出現2的次數 int num3 = 0; //定 ...
  • 前臺代碼: 後臺代碼: 遍歷gridview的每一行,取得RadioButton的值。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...