mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-11 20:00:30 +01:00
Fetch all results starting with letter A #148
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 @matuslittva on GitHub (Jul 6, 2017).
Hello i want to write query to select all results starting with particular letter, but this where clause is not working:
Where("name like 'A%'")
What is the problem?
@JohnEstropia commented on GitHub (Jul 6, 2017):
@matuslittva
Whereclauses useNSPredicates internally, so you need to writeThere's a good cheat sheet here: http://nshipster.com/nspredicate/
(Under "String Comparisons")
@matuslittva commented on GitHub (Jul 6, 2017):
@JohnEstropia thank you so much