MayurPatel-BlobStation

Results 4 comments of MayurPatel-BlobStation

> Thanks I am looking into it. Does this happen during the third party sign in login flow or are you inserting into the table somewhere else in your code?...

Yes I have use Asp.net identity. program.cs file code : ----------**Program.cs**---------- builder.Services.AddAppServices(configuration); var app = builder.Build(); app.UseMultiTenant(); ----------**ServiceCollectionExtensions.cs**---------- public static class ServiceCollectionExtensions { public static void AddAppServices(this IServiceCollection services, ApiConfiguration...

I have created a repository called IdentityRepository, which I am currently using. Repository Code: public class IdentityRepository : IIdentityRepository { private readonly UserManager _userManager; private readonly SignInManager _signInManager; public IdentityRepository(...

I have registered the identity repository in dependency injection with a scoped lifetime. However, I cannot find `IMultitenantAccessor`, which I believe refers to `IMultiTenantContextAccessor`. Even after using this, it is...