示例#1
0
        static void Main(string[] args)
        {
            using (var context = new EFCoreDemoContext())
            {
                var author = new Author
                {
                    FirstName = "William",
                    LastName  = "Shakesspeare",
                    Books     = new List <Book>
                    {
                        new Book {
                            Title = "Hamlet"
                        },
                        new Book {
                            Title = "Othello"
                        },
                        new Book {
                            Title = "MacBeth"
                        }
                    }
                };

                context.Authors.Add(author);
                context.SaveChanges();
            }
            Console.WriteLine("Hello World!");
        }
示例#2
0
        static void Main(string[] args)
        {
            using (var context = new EFCoreDemoContext())
            {
                // var author = new Author {
                //     FirstName = "William",
                //     LastName = "Shakespeare",
                //     Books = new List<Book>
                //     {
                //         new Book { Title = "Hamlet"},
                //         new Book { Title = "Othello" },
                //         new Book { Title = "MacBeth" }
                //     }
                // };
                // context.Add(author);
                // context.SaveChanges();

                foreach (var book in context.Books)
                {
                    Console.WriteLine("Title: " + book.Title + " Id: " + book.BookId);
                }
            }
        }