How to load navigation properties on an IdentityUser with UserManager

前端 未结 3 1714
离开以前
离开以前 2020-12-03 05:01

I\'ve extended IdentityUser to include a navigation property for the user\'s address, however when getting the user with UserManager.FindByEmailAsync

相关标签:
3条回答
  • 2020-12-03 05:04

    The short answer: you can't. However, there's options:

    1. Explicitly load the relation later:

      await context.Entry(user).Reference(x => x.Address).LoadAsync();
      

      This will require issuing an additional query of course, but you can continue to pull the user via UserManager.

    2. 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:

      var user = context.Users.Include(x => x.Address).SingleOrDefaultAsync(x=> x.Id == User.Identity.GetUserId());
      

    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.

    0 讨论(0)
  • 2020-12-03 05:17

    Unfortunately, you have to either do it manually or create your own IUserStore<IdentityUser> where you load related data in the FindByEmailAsync method:

    public class MyStore : IUserStore<IdentityUser>, // the rest of the interfaces
    {
        // ... implement the dozens of methods
        public async Task<IdentityUser> FindByEmailAsync(string normalizedEmail, CancellationToken token)
        {
            return await context.Users
                .Include(x => x.Address)
                .SingleAsync(x => x.Email == normalizedEmail);
        }
    }
    

    Of course, implementing the entire store just for this isn't the best option.

    You can also query the store directly, though:

    UserManager<IdentityUser> userManager; // DI injected
    
    var user = await userManager.Users
        .Include(x => x.Address)
        .SingleAsync(x => x.NormalizedEmail == email);
    
    0 讨论(0)
  • 2020-12-03 05:21

    I found it useful to write an extension on the UserManager class.

    public static async Task<MyUser> FindByUserAsync(
        this UserManager<MyUser> input,
        ClaimsPrincipal user )
    {
        return await input.Users
            .Include(x => x.InverseNavigationTable)
            .SingleOrDefaultAsync(x => x.NormalizedUserName == user.Identity.Name.ToUpper());
    }
    
    0 讨论(0)
提交回复
热议问题