标签:style blog color 使用 数据 ar art div 代码
public class Album { public virtual int AlbumId { get; set; } public virtual int GenreId { get; set; } public virtual int ArtistId { get; set; } public virtual string Title { get; set; } public virtual decimal Price { get; set; } public virtual string AlbumArtUrl { get; set; } public virtual int Genre { get; set; } public virtual int Artist { get; set; } }
在模型类的基础上添加控制器, 即可生成控制器, 数据上下文, 视图等.
标签:style blog color 使用 数据 ar art div 代码
原文地址:http://www.cnblogs.com/geyang/p/3931738.html