mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-14 07:33:28 +01:00
Chain .where clause #239
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @markst on GitHub (Nov 9, 2018).
There doesn't seem to be any documentation on whether chaining multiple
whereclauses is possible?It appears the following doesn't work:
and must be expressed as a single predicate.
@markst commented on GitHub (Nov 9, 2018):
45e110755d/Sources/Where.swift (L273)@JohnEstropia commented on GitHub (Nov 9, 2018):
You can use
&&and||operators instead:@markst commented on GitHub (Nov 9, 2018):
Thanks. Just no mention of it in readme.