是否可以在Identity Server 4中使用NoSQL?

时间:2017-08-23 18:55:11

标签: asp.net-core identityserver4 azure-cosmosdb

我正在尝试将NoSql数据存储集成到Cosmos DB等Identity Server 4中。我想知道是否有人做了类似的事情和/或是否有可能。

1 个答案:

答案 0 :(得分:5)

当然,可以将NoSQL数据库用于IdentityServer4。为什么不呢?

以下是MongoDB

的示例
  

在startup.cs中的ConfigureServices()方法中的“初始管道”。

 public void ConfigureServices(IServiceCollection services)
  { 
  ...
    // ---  configure identity server with MONGO Repository for stores, keys, clients and scopes ---
    services.AddIdentityServer()
           .AddTemporarySigningCredential()
           .AddMongoRepository()
           .AddClients()
           .AddIdentityApiResources()
           .AddPersistedGrants()
           .AddTestUsers(Config.GetUsers());
  ...
  }

还有另一个github项目cloudscribe,ASP.NET核心多租户Web应用程序基础,包含对站点,用户,角色,声明等的管理。该项目正在为IdentityServer实现PostgreSQL(ORDBMS)和MySql。在这个项目中,您可以了解如何实现允许在数据库之间切换的系统。