问题如上题目,最近在研究PostgreSQL数据库,但是能够通过Npgsql连接了,就是不会通过PetaPoco连接,希望有研究过的能给予帮助,我在这方面是小白。。
用NpgSql的方式我可以实现的,我就是想知道如何通过PetaPoco或Entity Framework等orm框架连接PostgreSQL数据库
PgSqlDataSet ds = new PgSqlDataSet();
string sql = "SELECT * FROM test WHERE tid=3000";
PgSqlConnection con = new PgSqlConnectio("user id=username;Password=pwd;host=hostname;database=test");
PgSqlDataAdapter da = new PgSqlDataAdapter(sql, con);
da.Fill(ds);
this.dataGridView1.DataSource = ds;
this.dataGridView1.DataMember = ds.Tables[0].ToString();
使用orm框架PetaPoco怎么弄呢?