示例#1
0
        void PrintAllwithGenre()
        {
            IEnumerable <Movie> movieCollection = movieRepo.GetAllWithGenre();

            foreach (var item in movieCollection) //?
            {
                Console.WriteLine(item.Title + " \t " + item.Genre.Name);
            }
        }