Index: ChapterX.Infrastructure/Data/DataContext/ApplicationDbContext.cs
===================================================================
--- ChapterX.Infrastructure/Data/DataContext/ApplicationDbContext.cs	(revision b373fea3e2c9d404606002f8e7ba265a82d68187)
+++ ChapterX.Infrastructure/Data/DataContext/ApplicationDbContext.cs	(revision 0b502c2664f4d6c64626f3394b4f1dc540e0aa9b)
@@ -187,6 +187,6 @@
                 e.Property(x => x.IsPublic).HasColumnName("is_public");
                 e.Property(x => x.UserId).HasColumnName("user_id");
-                e.Property(x => x.CreatedAt).HasColumnName("created_at");
-                e.Property(x => x.UpdatedAt).HasColumnName("updated_at");
+                e.Property(x => x.CreatedAt).HasColumnName("list_created_at");
+                e.Property(x => x.UpdatedAt).HasColumnName("list_updated_at");
                 e.HasOne(x => x.User).WithMany(u => u.ReadingLists).HasForeignKey(x => x.UserId);
             });
Index: ChapterX.Infrastructure/Repositories/StoryRepository.cs
===================================================================
--- ChapterX.Infrastructure/Repositories/StoryRepository.cs	(revision b373fea3e2c9d404606002f8e7ba265a82d68187)
+++ ChapterX.Infrastructure/Repositories/StoryRepository.cs	(revision 0b502c2664f4d6c64626f3394b4f1dc540e0aa9b)
@@ -19,4 +19,7 @@
                 .Include(s => s.Writer)
                     .ThenInclude(w => w!.User)
+                .Include(s => s.Likes)
+                .Include(s => s.Comments)
+                .Include(s => s.Chapters)
                 .ToListAsync(cancellationToken);
         }
