-
Notifications
You must be signed in to change notification settings - Fork 10.3k
ApiAuthorizationDbContext.cs missing ServerSideSessions Patch #45145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Add required IPersistedGrantDbContext.ServerSideSessions property
Update ApiAuthorizationDbContext.cs
Thanks for your PR, @hi-diego. Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
What's up with this PR? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be added ASAP.
Looks like this PR hasn't been active for some time and the codebase could have been changed in the meantime. |
@halter73 can you please review this? Thanks! |
Thank you for your contribution, and sorry for the slow feedback. Microsoft.AspNetCore.ApiAuthorization.IdentityServer will no longer be supported going forward, so I'm closing this PR. We plan to stop shipping it in .NET 8, and we are going to be removing Duende's IdentityServer from our SPA templates. See #42158 (comment) @JeremyLikness If you want to continue using IdentityServer, I recommend following the guidance laid out Duende's docs, templates and samples none of which use Microsoft.AspNetCore.ApiAuthorization.IdentityServer. |
Missing ServerSideSessions property added to ApiAuthorizationDbContext.cs
Description
reflection is throwing this error
"Method 'get_ServerSideSessions' in type 'Microsoft.AspNetCore.ApiAuthorization.IdentityServer.ApiAuthorizationDbContext`1' from assembly 'Microsoft.AspNetCore.ApiAuthorization.IdentityServer, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60' does not have an implementation."
IPersistedGrantDbContext.ServerSideSessions property must be implemented in the API ApiAuthorizationDbContext, this is required by IPersistedGrantDbContext Interface.
Fixes #44990