ASP. NET MVC uses Petapoco Mini ORM framework +npgsql to drive connected PostgreSQL database (problem summary)

Source: Internet
Author: User
Tags postgresql connectionstrings



The installation process is simply carried over:



1. Before looking at the code, we need to load npgsql and Petapoco into the current project, and I will use NuGet to add to the current project as follows:


Install-package Npgsql




Install-package Petapoco





2. Take a look at the important code in Web. config



1> Database Connection string


<connectionStrings> <add name ="Postgresql" connectionstring= " server=127.0.0.1; User id=postgres;password=123;database=mono_test; " providername="npgsql"/> </connectionStrings>

 





2>npgsql Drive configuration file


<!-provider-driven configuration file->
   <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. Load Npgsql.dll and Mono.Security.dll into the VS project.



1> these two DLLs into a folder









Open it:






Choose:



Next:






At last:



Reference:









The last of the last:



A demo base feature is available later. Background UI Reference:



thanks to the Elight.mvc author's contribution to the background UI.



Sample diagram:


















ASP. NET MVC uses Petapoco Mini ORM framework +npgsql to drive connected PostgreSQL database (problem summary)


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.