Beispiel #1
0
        static void TalkToPG()
        {
            var table = new PGTable("northwindPG", "products", "productid");
            var list  = table.All();

            foreach (var p in list)
            {
                Console.WriteLine(p.productid);
            }
        }