私はこれらの2つのモデルクラスを持っています:
public class Article
{
public int ID { get; set; }
public string Title { get; set; }
public ICollection<Comment> Comments { get; set; }
}
public class Comment
{
public int ID { get; set; }
public int ArticleID { get; set; }
public string CommentTxt { get; set; }
public Article Article { get; set; }
}
public class ArticleDbContext : DbContext
{
public DbSet<Article> Articles { get; set; }
public DbSet<Comment> Comments { get; set; }
}
記事に挿入されたすべてのコメントがリストされ、リストの下にその記事の新しいコメントを挿入できるページが必要ですか?