ASP.NET MVC 使用 Petapoco 微型ORM架構+NpgSql驅動串連 PostgreSQL資料庫(問題總結)

來源:互聯網
上載者:User

標籤:需要   sql   下一步   sys   技術分享   UI   web   載入   ges   

安裝過程就簡單帶過:

1. 在看代碼前,我們需要將NpgSql和Petapoco 載入到當前項目中來,我將使用Nuget來添加到當前項目,分別如下:

Install-Package Npgsql

 

Install-Package PetaPoco

 

2.下面看一下Web.config中的重要代碼

1>資料庫連接字串

<connectionStrings>    <add name ="Postgresql" connectionString="Server=127.0.0.1;User id=postgres;password=123;Database=mono_test;" providerName="Npgsql"/>  </connectionStrings>

 

2>NpgSql驅動設定檔

 <!--provider驅動的設定檔-->  <system.data>    <DbProviderFactories>      <add name="Npgsql Data Provider" invariant="Npgsql" support="FF" description=".Net Framework Data Provider for Postgresql Server" type="Npgsql.NpgsqlFactory, Npgsql"/>    </DbProviderFactories>  </system.data>

3.將 Npgsql.dll和 Mono.Security.dll 載入到vs 項目中。

1>將這兩個dll 找個檔案夾放入

 

開啟:

選擇:

下一步:

最後:

引用:

 

 最後的最後:

稍後奉上一個demo基礎功能都有。後台UI參考:

感謝 Elight.MVC 作者貢獻的後台UI.

樣圖:

 

 

ASP.NET MVC 使用 Petapoco 微型ORM架構+NpgSql驅動串連 PostgreSQL資料庫(問題總結)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.