public virtual ICollection<Product> Products { get; set; }
POCO 课程中的目的是什么?
public class Category
{
[ScaffoldColumn(false)]
public int CategoryID { get; set; }
[Required, StringLength(100), Display(Name = "Name")]
public string CategoryName { get; set; }
public virtual ICollection<Product> Products { get; set; }
}