Exemplo n.º 1
0
        static void Main(string[] args)
        {
            PerscriboContext db = new PerscriboContext();

            var dbQuery = db.Agencies.Where(id => id.ID > 0).ToArray();

            Console.WriteLine("Press any key to exit...");
            Console.ReadKey();
        }