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
Version: (e.g. 3.4.10) Module: (e.g. quill-core)
3.4.10
quill-core
setOpt in DynamicQueryDsl currently does not support String property.
setOpt
DynamicQueryDsl
String
def setOpt[T, U](property: Quoted[T] => Quoted[U], value: Option[U])(implicit enc: Encoder[U]): DynamicSet[T, U] = value match { case Some(v) => setValue(property, v) case None => DynamicSetEmpty() }
As an enhancement, we could also add property being String
@getquill/maintainers
The text was updated successfully, but these errors were encountered:
zio#1678 Dynamic query DSL updated
0bd7ac9
Added an extra method to support `String` properties.
Successfully merging a pull request may close this issue.
Version: (e.g.
3.4.10
)Module: (e.g.
quill-core
)setOpt
inDynamicQueryDsl
currently does not supportString
property.def setOpt[T, U](property: Quoted[T] => Quoted[U], value: Option[U])(implicit enc: Encoder[U]): DynamicSet[T, U] = value match { case Some(v) => setValue(property, v) case None => DynamicSetEmpty() }
As an enhancement, we could also add property being
String
@getquill/maintainers
The text was updated successfully, but these errors were encountered: