Rick

Results 24 comments of Rick

Wanted to check in to see if this is still targeting the 7.0 release? We are starting brand new development with IS and need to implement Multi-Tenant (Clients, User Stores,...

Please don't take away support for KnockoutJS, I know you guys no longer advertise it; but we have built a large scale application on the Knockout framework and DevExtreme.

@DavidYon, this is my exact same use case (the only thing I need multi-tenant is the user store). When you commit it to your repository I would like to take...

@DavidYon, I have discovered that the code does not actually work with the latest version of Duende IdentityServer v6. Store options are no longer passed in via constructor parameters. Making...

I am hacking away at it, I will let you know if I make any progress. I keep getting an DI activation error when I try to run the seed...

So, this is where I am at: ``` public class MultiTenantConfigurationDbContextFactory : IDesignTimeDbContextFactory { public MultiTenantConfigurationDbContext CreateDbContext(string[] args) { var optionsBuilder = new DbContextOptionsBuilder(); optionsBuilder.UseSqlServer("Server=(localdb)\\mssqllocaldb;Database=IdPConfig;Trusted_Connection=True;MultipleActiveResultSets=true"); var services = new ServiceCollection();...

Looks like I am good to go, the seeding was a typo on my part. Here is the ContextFactory for ApplicationDbConfig as well: ``` public ApplicationDbContext CreateDbContext(string[] args) { var...

Just to clarify, the change in how Duende IdentityServer works is on in v6, in v5 you still had access to the constructor. More information can be found here: https://github.com/DuendeSoftware/IdentityServer/issues/723...

The code I believe is the same, here is my code: ``` public class MultiTenantConfigurationDbContext : ConfigurationDbContext, IMultiTenantDbContext { public MultiTenantConfigurationDbContext(ITenantInfo tenantInfo, DbContextOptions options) : base(options) { TenantInfo = tenantInfo;...