asp.net-core – 是否可以将NoSQL用于Identity Server 4?

前端之家收集整理的这篇文章主要介绍了asp.net-core – 是否可以将NoSQL用于Identity Server 4?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试将Nosql数据存储集成到诸如Cosmos DB之类的Identity Server 4中.我想知道是否有人做过类似的事情和/或是否有可能.

解决方法

当然,可以将Nosql数据库用于IdentityServer4.为什么不?

这是MongoDB的一个例子

“initial plumbing” in ConfigureServices() method at startup.cs.

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.在这个项目中,您可以了解如何实现允许在数据库之间切换的系统.

原文链接:https://www.f2er.com/aspnet/248630.html

猜你在找的asp.Net相关文章