在mvc 5项目中使用标识。我有用户和优惠券模型,
public class ApplicationUser : IdentityUser
{
public string Name { get; set; }
public string Surname { get; set; }
public int TeamId { get; set; }
public int AvatarId { get; set; }
public DateTime RegisterationDate { get; set; }
public virtu