Accessing Navigation Properties from IdentityUser when LazyLoading is off

后端 未结 2 1906
暗喜
暗喜 2021-01-13 06:43

I\'ve this setup with code first model:

public class TestContext :IdentityDbContext
{
    public TestContext()
        : base(\"TestConnectio         


        
2条回答
  •  醉梦人生
    2021-01-13 07:41

    If you are always wanting to load the related data without using Lazy Loading then you will need to write your own implementation of the UserStore and plug that into your UserManager. For example..

    public class ApplicationUserStore : UserStore
    {
        public ApplicationUserStore(TestContext context) : base(context)
        {
        }
    
        public override TestUser FindByIdAsync(string userId)
        {
            return Users.Include(c => c.Customer).FirstOrDefault(u => u.Id == userId);
            //you may want to chain in some other .Include()s like Roles, Claims, Logins etc..
        }
    }
    

    then when you create your UserManager, plugin this implementation of the UserStore, and your Customer data will be loaded with the user.. this may look something like..

    public class TestUserManager : UserManager
    {
        public TestUserManager() : base(new ApplicationUserStore(new TestContext()))
        {
        }
    
    }
    

    depending on your project, the UserManager implementation will be different.

提交回复
热议问题