Exemplo n.º 1
0
        private static async Task FillBooksAsync(BookDataContext context)
        {
            // Demonstrate tracking queries here. Set a breakpoint up in
            // FillGenreAsync when genre rows are added. Afterwards, show that
            // the query returns THE SAME objects because of identical primary keys.
            var genres = await context.Genres.ToArrayAsync();

            var books = JsonSerializer.Deserialize <IEnumerable <Book> >(
                await File.ReadAllTextAsync("Data/Books.json"));

            using var transaction = context.Database.BeginTransaction();

            var rand = new Random();

            foreach (var book in books)
            {
                var dbBook = new Book
                {
                    Genre    = genres[rand.Next(genres.Length)],
                    Title    = book.Title,
                    ISBN     = book.ISBN,
                    Language = book.Language
                };
                context.Books.Add(dbBook);
            }

            await context.SaveChangesAsync();

            await transaction.CommitAsync();
        }
Exemplo n.º 2
0
        private static async Task CleanDatabaseAsync(BookDataContext context)
        {
            //Delete all data from all tables

            //悪い例
            //レコードひとつひとつを消してセーブを繰り返すので
            //めちゃくちゃ遅い
            //var books = await context.Books.ToArrayAsync();
            //foreach(var book in books)
            //{
            //    context.Books.Remove(book);
            //    await context.SaveChangesAsync();
            //}

            //トランザクションを使って,すべて成功か変更しないかを保証する
            using var transaction = await context.Database.BeginTransactionAsync();

            //生SQLを実行.
            await context.Database.ExecuteSqlRawAsync($"DELETE FROM {nameof(context.BookAuthors)}");

            await context.Database.ExecuteSqlRawAsync($"DELETE FROM {nameof(context.Books)}");

            await context.Database.ExecuteSqlRawAsync($"DELETE FROM {nameof(context.Authors)}");

            await context.Database.ExecuteSqlRawAsync($"DELETE FROM {nameof(context.Genres)}");

            //何もエラーが起こらなかった場合に限り,それをDBに反映する.
            await transaction.CommitAsync();
        }
Exemplo n.º 3
0
        private static async Task FillGenreAsync(BookDataContext context)
        {
            var genreData = await File.ReadAllTextAsync("Data/Genre.json");

            var genre = JsonSerializer.Deserialize <IEnumerable <Genre> >(genreData);

            using var transaction = context.Database.BeginTransaction();

            // Note how we combine transaction with exception handling
            try
            {
                // Note that we add all genre data rows BEFORE calling SaveChanges.
                foreach (var g in genre)
                {
                    context.Genres.Add(g);
                }

                await context.SaveChangesAsync();

                // Commit transaction if all commands succeed, transaction will auto-rollback
                // when disposed if either commands fails
                await transaction.CommitAsync();
            }
            catch (Exception ex)
            {
                Console.Error.WriteLine($"Something bad happened: {ex.Message}");

                // Note re-throw of exception
                throw;
            }
        }
Exemplo n.º 4
0
 static async Task Main(string[] args)
 {
     using var context = new BookDataContext();
     await CleanDatabaseAsync(context);
     await FillGenreAsync(context);
     await FillBooksAsync(context);
 }
Exemplo n.º 5
0
 static async Task <IEnumerable <Book> > QueryBooksWithAuthorsAsync(BookDataContext context)
 {
     // Note Include method to query books and genre with a single query.
     return(await context
            .Books
            .Include(b => b.Genre)
            .ToArrayAsync());
 }
Exemplo n.º 6
0
        private static async Task FillAuthorsAsync(BookDataContext context)
        {
            // Note that we are jus reading primary keys of books, not entire
            // book records. Tip: Always read only those columns that you REALLY need.
            var bookIDs = await context.Books.Select(b => b.BookID).ToArrayAsync();

            var authors = JsonSerializer.Deserialize <IEnumerable <Author> >(
                await File.ReadAllTextAsync("Data/Authors.json"));

            using var transaction = context.Database.BeginTransaction();

            var rand = new Random();

            foreach (var author in authors)
            {
                //Authors.jsonから読み込んだAuthorデータから
                //新しくAuthorインスタンスを作る
                //直接authorを使ってはいけない?
                //直接authorを使っても良いけれど,
                //もしauthorが変更された場合,それがDBに登録されることになる.
                //それを避けるためか?
                var dbAuthor = new Author
                {
                    AuthorName  = author.AuthorName,
                    Nationality = author.Nationality
                };

                // Randomly assign each author one book.
                // Note that we can use the dbAuthor, although we have not yet written
                // it to the database. Also note that we are using the book ID as a
                // foreign key.
                // 最後に,AuthorをDBに追加するときは
                // Bookとの多対多の関係を登録する必要がある
                // ここはちょっとくせがあるな.
                // AuthorオブジェクトとBookIDを使う.
                // AuthorとBookじゃないんだな.
                var dbBookAuthor = new BookAuthor
                {
                    Author = dbAuthor,
                    BookID = bookIDs[rand.Next(bookIDs.Length)]
                };

                //ここまででまだcontext.Authors.Addが出てきていないことに注目!

                // Note that we do NOT need to add dbAuthor. It is referenced by
                // dbBookAuthor, that is enough.
                // BookAuthorsにAddするだけよい.
                // これだけでAuthorsテーブルにもAuthorが登録される.
                // これはEntityFrameworkがやってくれる.
                context.BookAuthors.Add(dbBookAuthor);
            }

            await context.SaveChangesAsync();

            await transaction.CommitAsync();
        }
Exemplo n.º 7
0
        private static async Task <IEnumerable <Book> > QueryFilteredBooksAsync(BookDataContext context)
        {
            // Deferred Execution

            var filteredBooks = context.Books.Where(b => b.Genre.GenreTitle == "Drama");

            filteredBooks = filteredBooks.Where(b => b.Language == "US");

            var resultBooks = await filteredBooks.ToArrayAsync();

            return(resultBooks.Where(b => b.Title.Contains("bla")));
        }
Exemplo n.º 8
0
        static async Task Main(string[] args)
        {
            using var context = new BookDataContext();

            await CleanDatabaseAsync(context);
            await FillGenreAsync(context);
            await FillBooksAsync(context);
            await FillAuthorsAsync(context);

            var books = await QueryBooksWithGnere(context);

            var books2 = await QueryFilteredBooksAsync(context);
        }
Exemplo n.º 9
0
        static async Task <IEnumerable <Book> > QueryFilteredBooksAsync(BookDataContext context)
        {
            // Note that the query in the next line will NOT be executed immediately.
            // EF Core will run a single query once you call ToArrayAsync. This principle is
            // called Deferred Execution.
            var germanBooks = context
                              .Books
                              .Where(b => b.Language == "DE" || b.Language == "EN");

            // Both Where clauses are combined with logical AND.
            return(await germanBooks
                   .Where(b => b.Genre.GenreTitle.Contains("Drama"))
                   .ToArrayAsync());
        }
Exemplo n.º 10
0
        static async Task Main()
        {
            using var context = new BookDataContext();
            await CleanDatabaseAsync(context);
            await FillGenreAsync(context);
            await FillBooksAsync(context);
            await FillAuthorsAsync(context);

            var books = await QueryBooksWithAuthorsAsync(context);

            books = await QueryFilteredBooksAsync(context);

            books = await context.Books.EnglishBooks().BooksWithTitleFilter().ToArrayAsync();
        }
Exemplo n.º 11
0
        /// <summary>
        /// Genre情報付きでBookの情報を取得する
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        private static async Task <IEnumerable <Book> > QueryBooksWithGnere(BookDataContext context)
        {
            //例1:
            //var books = await context.Books.ToArrayAsync();
            //foreach (var book in books)
            //{
            //    book.Genre = await context.Genres.FirstAsync(g => g.GenreID == book.GenreID);
            //}

            //例2:
            var books = await context.Books
                        .Include(b => b.Genre)
                        .ToArrayAsync();

            return(books);
        }
Exemplo n.º 12
0
        static async Task CleanDatabaseAsync(BookDataContext context)
        {
            using var transaction = await context.Database.BeginTransactionAsync();

            {
                await context.Database.ExecuteSqlRawAsync("DELETE FROM BookAuthors");

                await context.Database.ExecuteSqlRawAsync("DELETE FROM Books");

                await context.Database.ExecuteSqlRawAsync("DELETE FROM Authors");

                await context.Database.ExecuteSqlRawAsync("DELETE FROM Genres");

                await transaction.CommitAsync();
            }
        }
Exemplo n.º 13
0
        static async Task CleanDatabaseAsync(BookDataContext context)
        {
            // Note that we are using a DB transaction here. Either all records are
            // inserted or none of them (A in ACID).
            using var transaction = context.Database.BeginTransaction();

            // Note that we are using a "Raw" SQL statement here. With that, we can use
            // all features of the underlying database. We are not limited to what EFCore
            // can do.
            await context.Database.ExecuteSqlRawAsync("DELETE FROM BookAuthors");

            await context.Database.ExecuteSqlRawAsync("DELETE FROM Books");

            await context.Database.ExecuteSqlRawAsync("DELETE FROM Genre");

            await context.Database.ExecuteSqlRawAsync("DELETE FROM Authors");

            await transaction.CommitAsync();
        }
Exemplo n.º 14
0
        private static async Task <IEnumerable <Book> > QueryFilteredBooksAsync(BookDataContext context)
        {
            //DramaジャンルからUSの本を取得する
            var filteredBooks = context.Books
                                .Where(b => b.Genre.GenreTitle == "Drama");

            //Deferred Execution(遅延実行)
            //上の時点ではクエリを組み立てただけで,実行はされていない.

            //まだ実行していない.クエリを組み立てただけ
            //filteredBooks = filteredBooks.Where(b => b.Language == "US");
            filteredBooks = filteredBooks.EnglishBooks();             //拡張メソッド使ってみた

            filteredBooks = filteredBooks.BooksWithTitleFilter("of"); //拡張メソッド使ってみた

            //ここでToArrayAsyncでクエリが実行される.
            //クエリの実行はできるだけ後ろに.
            return(await filteredBooks.ToArrayAsync());
        }
Exemplo n.º 15
0
        private static async Task FillAuthorsAsync(BookDataContext context)
        {
            // Note that we are jus reading primary keys of books, not entire
            // book records. Tip: Always read only those columns that you REALLY need.
            var bookIDs = await context.Books.Select(b => b.BookID).ToArrayAsync();

            var authors = JsonSerializer.Deserialize <IEnumerable <Author> >(
                await File.ReadAllTextAsync("Data/Authors.json"));

            using var transaction = context.Database.BeginTransaction();

            var rand = new Random();

            foreach (var author in authors)
            {
                var dbAuthor = new Author
                {
                    AuthorName  = author.AuthorName,
                    Nationality = author.Nationality
                };

                // Randomly assign each author one book.
                // Note that we can use the dbAuthor, although we have not yet written
                // it to the database. Also note that we are using the book ID as a
                // foreign key.
                var dbBookAuthor = new BookAuthor
                {
                    Author = dbAuthor,
                    BookID = bookIDs[rand.Next(bookIDs.Length)]
                };

                // Note that we do NOT need to add dbAuthor. It is referenced by
                // dbBookAuthor, that is enough.
                context.BookAuthors.Add(dbBookAuthor);
            }

            await context.SaveChangesAsync();

            await transaction.CommitAsync();
        }
Exemplo n.º 16
0
 private static async Task <IEnumerable <Book> > QueryBooksAsync(BookDataContext context)
 {
     //Return all books INCLUDING their genre
     return(await context.Books.Include(b => b.Genre).ToArrayAsync());
 }