我已经向asp.net身份用户添加了一个自定义集合,如下所示
public class ApplicationUser : IdentityUser
{
[MaxLength(100)]
[Required]
public string FirstName { get; set; }
[MaxLength(100)]
[Required]
public string LastName { get; set; }
public virtual ICollection<UserGroup> Groups { get; set; }
}
当我访问User.Groups属性时,身份框架正在查找UserGroups表,但我映射的实际表是cm_usergroup。 如何使Identity框架查找此表?