4

论坛潜伏已久,有一个问题基于MVC音乐商店教程(http://www.asp.net/mvc/tutorials/mvc-music-store/mvc-music-store-part-4)我我正在关注。

本教程使用 EF Code First 设置 CE 数据库。然而,作为类文件有专辑、流派和艺术家三个模型。现在 1 Album 可以有很多 Artists 但是代码只提到了流派和艺术家:

using System.Data.Entity;

namespace MvcMusicStore.Models
{
    public class MusicStoreEntities : DbContext
    {
        public DbSet<Album> Albums { get; set; }
        public DbSet<Genre> Genres { get; set; }
    }
}

为什么这段代码没有提到:

public DbSet<Artist> Artists { get; set; }

感谢阅读。我希望我不会太愚蠢。

4

1 回答 1

0

因为专辑中有艺术家,所以我们可以按专辑访问艺术家:

namespace MvcMusicStore.Models
{
    public class Album
    {
        public int      AlbumId     { get; set;
}
        public int      GenreId     { get; set; }
        public int      ArtistId    { get; set; }
        public string   Title       { get; set; }
        public decimal  Price       { get; set; }
        public string   AlbumArtUrl { get; set; }
        public Genre    Genre       { get; set; }
        public Artist   Artist      { get; set; }
    }
}
于 2012-04-17T11:22:15.340 回答