public static void Main()
        {
            var context = new NewsEntities();
            var context2 = new NewsEntities();

            // Step 1
            PrintCurrentNewsContent(context);

            try
            {
                // Step 2
                ChangeFirstNewsContentValue(context, "First");
                ChangeFirstNewsContentValue(context2, "Second");

                context.SaveChanges();
                Console.WriteLine("\n--First changes successfully saved in the DB.");
                
                context2.SaveChanges();
                Console.WriteLine("\n--Second changes successfully saved in the DB.");

                Console.WriteLine("Bye!");
            }
            catch (DbUpdateConcurrencyException cex)
            {
                Console.WriteLine(cex.Message + "\n");

                PrintCurrentNewsContent(context);
                ChangeFirstNewsContentValue(context, "Second");
            }
        }