oclockvn
2/21/2017 - 3:34 PM

snippet-1207922314.cs

public class Product
{
    // ...
    public virtual Category Category { get; set; }
}

public class Category
{
    // ...
    public virtual ICollection<Product> Products { get; set; }
}