I've extended IdentityUser
to include a navigation property for the user's address, however when getting the user with UserManager.FindByEmailAsync
, the navigation property isn't populated. Does ASP.NET Identity Core have some way to populate navigation properties like Entity Framework's Include()
, or do I have to do it manually?
I've set up the navigation property like this:
public class MyUser : IdentityUser
{
public int? AddressId { get; set; }
[ForeignKey(nameof(AddressId))]
public virtual Address Address { get; set; }
}
public class Address
{
[Key]
public int Id { get; set; }
public string Street { get; set; }
public string Town { get; set; }
public string Country { get; set; }
}
I found it useful to write an extension on the UserManager class.
The short answer: you can't. However, there's options:
Explicitly load the relation later:
This will require issuing an additional query of course, but you can continue to pull the user via
UserManager
.Just use the context. You don't have to use
UserManager
. It just makes some things a little simpler. You can always fallback to querying directly via the context:FWIW, you don't need
virtual
on your navigation property. That's for lazy-loading, which EF Core currently does not support. (Though, EF Core 2.1, currently in preview, will actually support lazy-loading.) Regardless, lazy-loading is a bad idea more often than not, so you should still stick to either eagerly or explicitly loading your relationships.Unfortunately, you have to either do it manually or create your own
IUserStore<IdentityUser>
where you load related data in theFindByEmailAsync
method:Of course, implementing the entire store just for this isn't the best option.
You can also query the store directly, though: