多個表MVC5查看數據,我有以下兩個表格使用LINQ
public class Book
{
public int Id { get; set; }
[Required]
[StringLength(255)]
public string BookTitle { get; set; }
[Required]
[StringLength(255)]
public string Author { get; set; }
[Required]
[StringLength(400)]
public string Description { get; set; }
}
,並
public class Rating
{
public int Id { get; set; }
[Required]
public int Rate { get; set; }
public Book Books { get; set; }
[Required]
public int BookId { get; set; }
}
一本書可以有多個等級。我需要編寫一個查詢,以便我可以查看每本書的BookTitle,作者,描述和平均評分。我知道我可以使用視圖模型,但我不知道如何組織 LINQ查詢
和幫助,將不勝感激
非常感謝!運作良好。產出如預期。 –