We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, only testCache(EntityID<ID>) is present, so please add testCache(ID):
testCache(EntityID<ID>)
testCache(ID)
Exposed/exposed-dao/src/main/kotlin/org/jetbrains/exposed/dao/EntityClass.kt
Lines 73 to 75 in d592472
For instance, get(...) has two variations:
get(...)
Lines 20 to 22 in d592472
The text was updated successfully, but these errors were encountered:
Workaround is
fun<ID: Comparable<ID>, T : Entity<ID>> EntityClass<ID, T>.testCache(id: ID) = testCache(EntityID(id, table))
Sorry, something went wrong.
Add EntityClass#testCache(id: ID)
2c616ec
fixes JetBrains#1276
No branches or pull requests
Currently, only
testCache(EntityID<ID>)
is present, so please addtestCache(ID)
:Exposed/exposed-dao/src/main/kotlin/org/jetbrains/exposed/dao/EntityClass.kt
Lines 73 to 75 in d592472
For instance,
get(...)
has two variations:Exposed/exposed-dao/src/main/kotlin/org/jetbrains/exposed/dao/EntityClass.kt
Lines 20 to 22 in d592472
The text was updated successfully, but these errors were encountered: