Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class TodoContext(DbContextOptions<TodoContext> options) : DbContext(opti
/// This method performs the following operations:
/// <list type="number">
/// <item><description>Ensures the database is created using <see cref="DatabaseFacade.EnsureCreatedAsync"/>.</description></item>
/// <item><description>Checks if the TodoItems table is empty using <see cref="EntityFrameworkQueryableExtensions.AnyAsync{TSource}(IQueryable{TSource})"/>.</description></item>
/// <item><description>Checks if the TodoItems table is empty using <see cref="EntityFrameworkQueryableExtensions.AnyAsync{TSource}(IQueryable{TSource}, CancellationToken)"/>.</description></item>
/// <item><description>If empty, clears the change tracker to avoid entity tracking conflicts.</description></item>
/// <item><description>Adds three sample todo items with predefined titles.</description></item>
/// <item><description>Saves the sample data to the database.</description></item>
Expand Down
Loading