AspNetCore.Docs/aspnet/whitepapers/mvc3-release-notes/samples/sample5.cs

16 lines
369 B
C#

public class Product
{
public int ProductId { get; set; }
[Required]
public string Name { get; set; }
// Product belongs to Category
public int CategoryId { get; set; }
public virtual Category Category { get; set; }
}
public class Category
{
public int CategoryId { get; set; }
[Required]
public string Name { get; set; }
}