示例和種子數據顯示在啓動時創建新客戶端。 這在創建客戶端的情況下很好。 是否有更新客戶端的任何現有方法或規定。更新涉及跟蹤來自客戶端收集字段的現有記錄。 考慮到記錄已經在數據庫中可用,更新期間實體如何從IdentityServer4.Models映射到IdentityServer4.EntityFramework.Entities?在IdentityServer4中編輯客戶端
0
A
回答
1
你是什麼意思,當你說客戶?如果你的意思是Client for Identity server,那麼你可以在配置類中編輯/配置或添加更多的客戶端或其他資源。雖然啓動,身份服務器將負載可達自身所有的客戶,都因爲這段代碼:
// Add identity server.
services.AddIdentityServer()
.AddTemporarySigningCredential()
.AddInMemoryIdentityResources(Config.GetInMemoryIdentityResources())
.AddInMemoryApiResources(Config.GetInMemoryApiResources())
.AddInMemoryClients(Config.GetInMemoryClients(Configuration))
.AddAspNetIdentity<ApplicationUser>()
.AddProfileService<SqlProfileService>();
1
是否有更新客戶端的任何現有方法或規定。 更新涉及從收集跟蹤現有記錄 領域的客戶中也
是的,你可以更新客戶端,你可以更新任何其他數據。檢查here你如何使用考慮 記錄已經在數據庫中可用的更新期間identityserver4
的EntityFramework核心是如何從實體映射IdentityServer4.Models到 IdentityServer4.EntityFramework.Entities?
如果檢查IdentityServer4源,你會發現AutoMapper是用來轉換實體空間(namespace IdentityServer4.EntityFramework.Mappers)。並且已提供名爲ToModel
的分機號
相關問題
- 1. IdentityServer4與多個客戶端
- 2. 客戶端編輯器
- 3. IdentityServer4存儲客戶端密碼
- 4. 在Web客戶端編輯附件
- 5. IdentityServer4在Azure中處理什麼樣的「客戶端請求」?
- 6. 客戶端編輯幾頁。迷你CMS?
- 7. 無法編輯Instagram客戶端註冊
- 8. Telerik MVC Grid - 啓用編輯客戶端
- 9. 客戶端的實時HTML編輯器
- 10. HTML網頁的客戶端編輯
- 11. 客戶端網頁編輯問題?
- 12. html css js客戶端編輯
- 13. 客戶端的內容編輯器
- 14. 在沒有客戶端的機器上編輯內容的SVN客戶端
- 15. IdentityServer4客戶端 - 在CookieAuthenticationEvents上刷新訪問令牌
- 16. 在WCF服務端編輯來自客戶端的SOAP請求
- 17. JavaScript中的業務邏輯。胖客戶端與瘦客戶端
- 18. 在GWT客戶端代碼中讀取和編輯Excel
- 19. 客戶端在Telerik RedGrid中插入/編輯開始事件?
- 20. Grails:編輯(form:multipart)文件(從客戶端)並將其發送回客戶端
- 21. Socket.io客戶端到客戶端邏輯,有很多用戶
- 22. IdentityServer4 ProfileService未針對非Core客戶端調用
- 23. 如何使用IdentityServer4具有與ClientCredentials JavaScript客戶端ASP.NET核心
- 24. IdentityServer4使用客戶端憑證授予類型
- 25. IdentityServer4 - 註銷後重定向到MVC客戶端
- 26. 客戶端與服務器端邏輯
- 27. 從C#中的多個客戶端同時編輯textarea .net
- 28. MVC4中自定義編輯器模板的客戶端驗證
- 29. Alfresco:編輯自定義客戶端中的文檔
- 30. 如何在客戶端編輯gwt requestfactory的ValueProxy值?