-
Notifications
You must be signed in to change notification settings - Fork 934
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
Add missing ISession.Get(entityName, id, lockMode) #2378
Conversation
Co-authored-by: Frédéric Delaporte <12201973+fredericDelaporte@users.noreply.github.com>
return Get(clazz.FullName, id, lockMode); | ||
} | ||
|
||
/// <inheritdoc /> |
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.
<inheritdoc />
is not valid here because there is no parent.
/// <inheritdoc /> | |
/// <inheritdoc cref="SessionExtensions.Get" /> |
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.
I should probably go sleeping. It's my third attempt to put this comment. 🤦
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.
is not valid here because there is no parent.
Yeah we know it's been discussed here: #2378 (comment)
As this class is not intended to be used by end user I think it's OK to have it as is. It will become valid when we merge this method to interface. With you suggestion it's still invalid as multiple Get extensions are present. And we need to add to TODO to remove cref
. So maybe leave it be...
Fixes #2313
IStatelessSession.Get(entityName, id, lockMode)
is already present