CategoriesAndProducts.Program.Main C# (CSharp) Method

Main() static private method

static private Main ( ) : void
return void
        static void Main()
        {
            // Please change the connection string with Your Own 
            // Check the database Name too!!!
            string connectionString = "Server=LENOVO\\SQLEXPRESS; Database=NORTHWND; Integrated Security=true";
            SqlConnection dbCon = new SqlConnection(connectionString);
            dbCon.Open();
            using (dbCon)
            {
                Console.WriteLine("FETCHING CATEGORIES AND PRODUCTS:");
                Console.WriteLine("------------------------------------");
                SqlCommand cmdCategoriesAndProducts = new SqlCommand(
                  @"SELECT p.ProductName, c.CategoryName
                    FROM Products p INNER JOIN Categories c
                    ON p.CategoryID = c.CategoryID
                    ORDER BY CategoryName", dbCon);
                SqlDataReader reader = cmdCategoriesAndProducts.ExecuteReader();

                var finalResult = new Dictionary<string, HashSet<string>>(); 
                using (reader)
                {
                    while (reader.Read())
                    {
                        string productName = (string)reader["ProductName"];
                        string categoryName = (string)reader["CategoryName"];
                        if (!finalResult.ContainsKey(categoryName))
                        {
                            finalResult[categoryName] = new HashSet<string>();
                        }

                        finalResult[categoryName].Add(productName);
                        
                    }
                }
                PrintResult(finalResult);
            }
        }